Page 1 of 1

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

Posted: Wed Jul 13, 2022 7:56 pm
by answerhappygod
a) int a=lu100;
b) int a= 100ul;
c) int a=uu100;
d) int a=100uu;