Last active
January 29, 2016 15:35
-
-
Save dulimarta/858814e949fd392836b8 to your computer and use it in GitHub Desktop.
CS452 Lab01 - Sample 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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