1 votes
1 answer
1
#include <stdio.h int main() { int a = 1; char d[] = "ab"; printf("%d", sizeof(a+d)); return 0; }Explain the Output
0 votes
1 answer
2
#include <stdio.h #define foo(m,n) "m n" int main() { char x='k',y='l'; printf("%s",foo(x,y)); return 0; }OutputPlease explain why the output is m n instead of k l