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
Is there finally in c++?
Array base access faster or pointer base access is faster?
What do you mean by function and operator overloading in c++?
What is conditions when using boolean operators?
What is the best way to declare and define global variables?
Explain what data encapsulation is in c++?
What is a far pointer? where we use it?
an operation between an integer and real always yeilds a) integer result b) real result c) float result
What are the advantages of using a pointer? Define the operators that can be used with a pointer.
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
How is c++ different from java?
What are exceptions c++?
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
What is the difference between #import and #include in c++?
What is type of 'this' pointer?