0
What is the output of this C code?
#include <stdio.h> void main() { int a=20; if(printf("Hello! Dear\n")) { printf("%d\n",a); } }
2 Respuestas
+ 2
Hello! Dear
20
That´s the output.
Remember to use int instead of void and return 0.
0
I think Hello! Dear