MCQOPTIONS
Saved Bookmarks
| 1. |
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» C. int a=uu100; | |