can anybody please tell me how to write a program in
c++,without using semicolon(;)
Answer Posted / jasbir singh
void main()
{
if(0)
{
}
}
if you use void with main function, you have no need to
return a value.
| Is This Answer Correct ? | 16 Yes | 4 No |
Post New Answer View All Answers
What do nonglobal variables default to a) auto b) register c) static
What is the operator in c++?
What is the standard template library (stl)?
What is the c++ code?
Does c++ have a hash table?
What is function overloading in C++?
Is atoi safe?
Do you know the use of vtable?
Explain differences between new() and delete()?
What is setw manipulator in c++?
Where can I run c++ program?
How many types of modularization are there in c++?
What is a Default constructor?
Which one between if-else and switch is more efficient?
Explain abstraction.