Examveda
Examveda

What will be the output of the following C code?
main()
{
    unsigned a=10;
    long unsigned b=5l;
    printf(“%lu%u”,a,b);
}

A. 105

B. 510

C. 10

D. error

Answer: Option A


This Question Belongs to C Program >> C Miscellaneous

Join The Discussion

Related Questions on C Miscellaneous