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
How would you use the functions sin(), pow(), sqrt()?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
What does it mean to declare a member function as static?
Tell me can a pure virtual function have an implementation?
Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
What are arrays c++?
What is the difference between the functions rand(), random(), srand() and randomize()?
Why cstdlib is used in c++?
What is this weird colon-member (" : ") syntax in the constructor?
Why c++ does not have finally?
How is objective c different from c++?
What is string in c++ programming?
What is an inline function in c++?
What is iomanip c++?
What are the extraction and insertion operators in c++? Explain with examples.