A
Q. What is the output of this code?
Code:
#include <stdio.h>
#define PI 3.14
int main() {
printf("%.2f", PI);
return 0;
}
#define PI 3.14
int main() {
printf("%.2f", PI);
return 0;
}
- Correct Answer - Option(A)
- Views: 19
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.