As per C language standard, which of the followings is/are not keyword(s)? Pick the best statement.
auto
make
main
sizeof
elseif
(A) None of the above is keywords in C.
(B) make main elseif
(C) make main
(D) auto make
(E) sizeof elseif make
Answer: (B)
Explanation: “auto” is a storage specifier defined in C language. “sizeof” is unary operator defined in C language. Both of these are reserved words i.e. keywords as per C language standard. All the other 3 i.e. main make and elseif aren’t keywords. In fact, you can use int main, make, elseif; in your C program.
Quiz of this Question
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
28 Jun, 2021
Like Article
Save Article