Home » Technical Questions » Programming

What would be the output of the following program? # define SQR(x) (x * x) main() { int a, b = 3; a = SQR ( b + 2 ); Printf ("\n %d ", a ); }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!