+ 4
Please, Explain the following...
unsigned int i = 23; signed char c = -23; if(i>c) printf("Yes\n"); else if(i<c) printf("No\n"); //Output is : No //How ???
2 Respuestas
+ 1
This post explain it well
https://stackoverflow.com/a/1010388
unsigned int i = 23; signed char c = -23; if(i>c) printf("Yes\n"); else if(i<c) printf("No\n"); //Output is : No //How ???