0
Can anyone explain why their is no error?
#include <stdio.h> int main() { int a=3,b=5,c=7; if(b<c); else a=b; b=c; printf("%d%d",a,b); return 0; }
1 Resposta
0
There shouldn't be an error though everything is fine!
#include <stdio.h> int main() { int a=3,b=5,c=7; if(b<c); else a=b; b=c; printf("%d%d",a,b); return 0; }