Computer Science, asked by pratyushbisht007, 4 months ago

What is the output of the following program?
#include <stdio.h>
#define double(x) X+X
int maino
{
printf("%d", double(5) double(5));
return 0
}
h
100
10
25​

Answers

Answered by aarifatrichy
0

Answer:

int main(). { int a[10][20][30] = {0}; a[5][2][1] = 2; return 0;. } (a) printf("%d",*(((a+5)+2)+1)); ... int main(). { int a = 5; int b = ++a * a++; printf("%d ",b); return 0;. } (a) 25. (b) 30 ... #include<stdio.h>. #define x 4+1 int main(). { int i; i = x*x*x; printf("%d",i);.

Similar questions