#includestdio.h
#includelimits.h
int main()
{
unsigned int var1=0;
unsigned int var2=UINT_MAX;
printf("range of unsigned integer is from %u to %u ",var1,var2);
return 0;
}
What will replace %u in the output of statement printf?

Posted on by