R

Ram Sharma • 193.81K Points
Coach

Q. What is the output of this program?

Code:
#include <stdio.h> 
#include  <stdlib.h>
#define square(x) x*x
int main()
{
  int i;
  i = 27/square(3);
  printf("%d",i);
  return 0;
}
  • (A) 3
  • (B) 9
  • (C) 27
  • (D) Compilation error

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.