What will be the output of the following C code?
main()
{
unsigned a=10;
long unsigned b=5l;
printf(“%lu%u”,a,b);
}
main()
{
unsigned a=10;
long unsigned b=5l;
printf(“%lu%u”,a,b);
}A. 105
B. 510
C. 10
D. error
Answer: Option A

Join The Discussion