Why c++ is the best language?
No Answer is Posted For this Question
Be the First to Post Answer
Who created c++?
which of the following is not an secondary constant a) array b) real c) union
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
what is the basic concept of c++(object oriented programing)
What are friend classes?
Write a C++ program that asks the user to choose a number between 1 and 1000. Then, your program should be able to guess the number by asking the user no more than 10 yes/no questions. Use a while loop in your program
Explain bubble sorting.
What is a 'pure' virtual function and what's its use?
Live example for static function?
write a programme to get a character and thier ASCII value
Why seem interrupt handlers as member functions to be impossible?