Home » C Programming » C Preprocessor

What will be the output of the program? #include<stdio.h> #define SQUARE(x) x*x int main() { float s=10, u=30, t=2, a; a = 2*(s-u*t)/SQUARE(t); printf("Result = %f", a); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!