Skip to content

Instantly share code, notes, and snippets.

View datduyng's full-sized avatar

Dominic Nguyen datduyng

View GitHub Profile
@datduyng
datduyng / introduction-H.md
Created October 12, 2018 05:06 — forked from cbourke/introduction-H.md
auto-posted gist

Introduction

CSCE 155H, Fall 2018

An overview of basics including variables, input and output in C and Java.

Programming, Compiling & Running Process

  • Source file are plain text files containing source code
  • Source files are assembled and compiled:
@datduyng
datduyng / circleIntersection.c
Created October 12, 2018 05:03 — forked from cbourke/circleIntersection.c
auto-posted gist
/**
* Name: Chris Bourke
*
* CSCE 155E Midterm
*
* Write a full program to determine if two circles intersect.
* Details are provided in the midterm handout.
*/
#include <stdlib.h>
#include <stdio.h>