What are structs in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program which uses functions like strcmp(), strcpy()? etc
What are the rules about using an underscore in a c++ identifier?
Explain the concept of dynamic allocation of memory?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
How many standards of c++ are there?
Why c++ is better than c language?
Given an array of size N in which every number is between 1 and N, determine if there are any duplicates in it. You are allowed to destroy the array if you like. [ I ended up giving about 4 or 5 different solutions for this, each supposedly better than the others ].
What are the restrictions apply to constructors and destructors?
Do class declarations end with a semicolon? Do class method definitions?
What are the basics of local (auto) objects?
write a program that takes 5 digit no and calculate 2 power that no and print it.
What is virtual methods?