How long does this loop run:
for(int x=0; x=3; x++)
a) Never
b) Three times
c) Forever
Answer Posted / sentrix
Forever.
| Is This Answer Correct ? | 17 Yes | 4 No |
Post New Answer View All Answers
Why do we use vector in c++?
What is an operator function? Describe the function of an operator function?
What is searching? Explain linear and binary search.
Do you know about latest advancements in C++ ?
What does int * mean in c++?
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
Explain the scope of resolution operator.
If you don’t declare a return value, what type of return value is assumed?
Can c++ be faster than c?
What is class invariant in c++?
What are vtable and vptr?
Is sorted c++?
What are the four partitions in which c++ compiler divides the ram?
Explain how overloading takes place in c++?
What is runtime polymorphism in c++?