write infinite loop in C++ which does not use any variable
or constant?
Answer Posted / sxx
for(;;)
| Is This Answer Correct ? | 27 Yes | 3 No |
Post New Answer View All Answers
Why is c++ called oops?
Can java be faster than c++?
Is c++ a good first language to learn?
What is function prototyping?
Is eclipse good for c++?
What is the keyword auto for?
What is the difference between a type-specific template friend class and a general template friend class?
Is c++ primer good for beginners?
Why is the function main() special?
What is the first name of c++?
why is c++ called oops? Explain
Difference between inline functions and macros?
Why do we use structure in c++?
Can we specify variable field width in a scanf() format string? If possible how?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);