How do you save a c++ program?
No Answer is Posted For this Question
Be the First to Post Answer
show that among any group of five (not necessary consecutive ) integers, there are two with the same remainder when divided by 4.
Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
What is the use of setfill in c++?
What does getch() do according to the ANSI C++ standard a) Reads in a character b) Checks the keyboard buffer c) Nothing in particular (Its not defined there)
What do you mean by abstraction. Explain your answer?
Why Pointers are not used in C++?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
Explain public, protected, private in c++?
What happens when a function throws an exception that was not specified by an exception specification for this function?
What is difference c and c++?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
How would you use qsort() function to sort an array of structures?