Created
July 13, 2011 01:50
-
-
Save suchi/1079576 to your computer and use it in GitHub Desktop.
Practice of Programming p.169
This file contains 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> | |
#define _USE_MATH_DEFINES 1 | |
#include <math.h> | |
int main() | |
{ | |
int n = 1; | |
double d = M_PI; | |
printf("%d %f\n", d, n); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment