Question:

Which of the following is not a keyword in C ?

Show Hint

Common C keywords to remember: if, else, while, do, for, break, continue, return, int, float, char, struct. If it's used in SQL but not C logic, it's probably not a C keyword!
Updated On: Jun 6, 2026
  • do
  • break
  • join
  • for
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

Keywords are reserved words in C that have a predefined meaning for the compiler and cannot be used as variable names. 1. Standard C Keywords: There are 32 original keywords in C (ANSI C).
do, for: Used for loop control.
break: Used to exit a loop or switch case. 2. The word "join": The word join is often used in SQL or as a function name in multi-threading libraries (like POSIX threads pthread_join), but it is not a reserved keyword in the C programming language itself. 3. Conclusion: Since "join" is not part of the reserved vocabulary of C, it is the correct answer.
Was this answer helpful?
0
0

Top CUET PG Data Science A.I Cyber Security and Computer Sci. Questions

View More Questions

Top CUET PG Programming and Data Structures Questions

View More Questions