write infinite loop in C++ which does not use any variable
or constant?
Answer Posted / chetan bhola
while(1)
{
;
}
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
Which function cannot be overloaded c++?
Is c++ map a hash table?
What c++ library is string in?
Should the member functions which are made public in the base class be hidden?
Explain 'this' pointer and what would happen if a pointer is deleted twice?
Why are arrays usually processed with for loop?
Is it possible for a member function to delete the pointer, named this?
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
What is the prototype of printf function?
What is fflush c++?
What is c++ code?
What is endianness?
Is it possible for the objects to read and write themselves?
Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].
Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.