Which of the following is a proper integer number (in the “C” language sense)?
123456
123,456
123.456
123_456
Explanation & Hints:
In C, a proper integer number is a sequence of digits without any separators such as commas, decimal points, or underscores. Based on this, let’s evaluate the provided options:
Therefore, the proper integer number in the “C” language sense is 123456. |