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 );
}5
2044 5b5cc7dde4d2b419777515e0
Q: 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 ); }
- Show Answer
- Workspace
- Discuss