C Fundamentals - Study Mode
[#46] Relational operators cannot be used on . . . . . . . .
Correct Answer
(A) structure
[#47] Which of the following cannot be a variable name in C?
Correct Answer
(A) volatile
[#48] Which type of conversion is NOT accepted?
Correct Answer
(B) From float to char pointer
[#49] A variable declared in a function can be used in main().
Correct Answer
(B) False
[#50] What is the maximum number of arguments that can be passed to a C function?
Correct Answer
(D) No limit
Explanation
Solution: The maximum number of arguments that can be passed to a C function is Option D: No limit . In C, there is no hard-coded limit on the number of arguments you can pass to a function. However, practical limitations may exist based on factors like system memory and stack size. So, the correct answer is: Option D: No limit