Basics of C++

C++ is an extension of C language. One of the new features added is: Structure Union Operator overloading Function Which of the following statements is FALSE? In a C++ program, the execution begins at main() function. Every C++ program must have a main() function. Every C++ statement must end with a semicolon. C++ does not permit the use of printf() for displaying an output. Line commands are inserted into a C++ program using Left and right curly brackets like {…} Double forward slashes like //….. Stars and slashes like /*..…*/…

Read More