What will be the output of the following program in C?
1 #include <stdio.h>
2 #define defMethod(i)(i*i)
о
4 int main() {
5 int a=10;
int b=20;
a=a9b;
bra^b:
a=a*b;
10 printf("\n%d %d", a,b);
17 }
ор
Answers
Answered by
0
Answer:
\n%d%1020
Explanation:
it will print this, as per my knowledge
Similar questions