0
#include <stdio.h> #define prod(i,j) i*j int main() { int x=3,y=4; printf(" %d \n",prod(x+1,y)); } output :7
Why does this give 7 as output??
2 Respostas
+ 3
3+1*4 what's the answer???
0
Ah ok it is about precedence Thank you ❤❤
Why does this give 7 as output??