Skip to content

Instantly share code, notes, and snippets.

@dulimarta
Last active January 29, 2016 15:35
Show Gist options
  • Save dulimarta/858814e949fd392836b8 to your computer and use it in GitHub Desktop.
Save dulimarta/858814e949fd392836b8 to your computer and use it in GitHub Desktop.
CS452 Lab01 - Sample 1
#include <stdio.h>
#include <math.h>
int main() {
double num = 0.0;
printf ("Hello, world.\n");
num = pow (2, 28);
printf ("You are the %f person to write this program!\n", num);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment