Can I learn c++ in a week?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
What do you understand by a pure virtual member function?
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes
What are the different types of polymorphism?
what is the C++
Describe new operator?
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }
What are the data types in c++?
What is algorithm in c++ programming?
What is dangling pointers?and what is memory leak?
What are arithmetic operators?
Will the following program execute?