can anybody please tell me how to write a program in
c++,without using semicolon(;)
Answer Posted / sanjay singh
void main()
{
if(printf("i can try to write ... "))
{
}
}
| Is This Answer Correct ? | 16 Yes | 6 No |
Post New Answer View All Answers
Are vectors faster than arrays?
What is ios in c++?
If dog is a friend of boy, is boy a friend of dog?
What is #include iostream in c++?
When should we use multiple inheritance?
What is the full form nasa?
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.
Does c++ vector allocate memory?
Where must the declaration of a friend function appear?
Can constructor be private in c++?
Where is atoi defined?
What do you mean by translation unit?
What is virtual destructor? What is its use?
Is arr and &arr are same expression for an array?