Sunday, 4 January 2015

Programming Quiz-49


#define SQR(x) x * x
main()
{
  printf("%d", 225/SQR(15));
}

a. 1
b. 225
c. 15
d. none of the above 


Answer: B

No comments:

Post a Comment