What will be output when you will execute following c code?
#include <stdio.h>
void main(){
signed int a = -1;
unsigned int b = -1u;
if(a == b)
printf...
See more
Download the Study24x7 App, so you can connect and collaborate.