Examveda
Examveda

Suppose we have: int a=100; (signed by default).
If we want to convert this to an unsigned long integer, we can do this by making the following small change:

A. int a=lu100;

B. int a= 100ul;

C. int a=uu100;

D. int a=100uu;

Answer: Option B


This Question Belongs to C Program >> C Miscellaneous

Join The Discussion

Related Questions on C Miscellaneous