What is the basic difference between C and C++?
No Answer is Posted For this Question
Be the First to Post Answer
Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?
Difference between pass by value and pass by reference?
Can we inherit constructor in c++?
How do I start a c++ project?
How do you import payscale data from non SAP to SAP?is it through LSMW or any other way is there?
Explain the uses oof nested class?
How to declare a pointer to an array of integers?
What is difference between rand () and srand ()?
Write a program to show polymorphism in C++?
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
How many types of classes are there in c++?
Explain bubble sorting.