can anybody please tell me how to write a program in
c++,without using semicolon(;)
Answer Posted / rayn
#define SEMICOLON ;
int main()
{
cout << "Hello World!\n" SEMICOLON
return 0 SEMICOLON
}
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Explain friend class?
What are the 3 levels of programming languages?
What is the error in the code below and how should it be corrected?
What are the differences between the function prototype and the function defi-nition?
What are static type checking?
What is the advantage of c++ over c?
Can user-defined object be declared as static data member of another class?
Write a note about the virtual member function?
Explain the properties and principles of oop.
What is constant in c++ with example?
What is c++ programming language?
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
Write about all the implicit member functions of a class?
What do you mean by overhead in c++?
What is an adaptor class in c++?