Find out the output of the given program or error (if any).
#include<stdio.h>
#include<conio.h>
int main()
{
unsigned u=65535;
printf("u=%d",u);
getch();
}
Reveal answer
Fill a bubble to check yourself
Find out the output of the given program or error (if any).
#include<stdio.h>
#include<conio.h>
int main()
{
unsigned u=65535;
printf("u=%d",u);
getch();
}