Open In App

C Quiz – 103 | Question 5

Like Article
Like
Save Article
Save
Share
Report issue
Report

As per C language standard, which of the followings is/are not keyword(s)? Pick the best statement. auto make main sizeof elseif

(A)

sizeof elseif make

(B)

make main elseif

(C)

make main

(D)

auto make

(E)

None of the above is keywords in C.



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
Please comment below if you find anything wrong in the above post


Last Updated : 28 Jun, 2021
Like Article
Save Article
Share your thoughts in the comments
Similar Reads