1.

Which of the following is the correct output for the program given below?
#include <stdio.h>
#define SQR(k) (k * k)
int main( )
{
int p, q = 5 ;
p = SQR (q + 3) ;
printf ("%d n" , p) ;
return 0 ;
}

A. 64
B. 23
C. Error
D. Garbage value
Answer» C. Error


Discussion

No Comment Found

Related MCQs