Report Bug
Qus : Which one of the following is not a keyword in C language?
QusC भाषा में निम्नलिखित में से कौन सा एक keyword नहीं है?

A. void
B. endl
C. float
D. switch


Solution
B. endl



Explanation

The endl is a predefined object of ostream class. It is used to insert a new line characters and flushes the stream. it used in C++.




Report Bug