1.

Suppose we have: int a=100; (signed by default).

A. If we want to convert this to an unsigned long integer, we can do this by making the following small change:
B. int a=lu100;
C. int a= 100ul;
D. int a=uu100;
E. int a=100uu;
Answer» C.


Discussion

No Comment Found