can anybody please tell me how to write a program in
c++,without using semicolon(;)
Answer Posted / ck giri from biratnagar
#include<iostream.h>
void main()
{
while(0)
{}
}
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Which bitwise operator is used to check whether a particular bit is on or off?
What is #include iostream in c++?
How are virtual functions implemented in c++?
What is insertion sorting?
What is a storage class used in c++?
What are the uses of static class data?
What is size of string in c++?
Describe friend function & its advantages.
Explain how we implement exception handling in c++?
Can you declare an array without a size in c++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
What operators can you overload in c++?
Write about an iterator class?
What is abstraction in c++?
Who calls main function?