MCQOPTIONS
Saved Bookmarks
This section includes 1 Mcqs, each offering curated multiple-choice questions to sharpen your C Questions and Answers knowledge and support exam preparation. Choose a topic below to get started.
| 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. int a= 100ul; | |