what is the diff b/n c and c++

a. dynamic scoping
b. nested switching
c. declaration of variables in any code block
d. separation of compilation and linking

Answers were Sorted based on User's Feedback



what is the diff b/n c and c++ a. dynamic scoping b. nested switching c. declaration of vari..

Answer / swetcha

declaration of variables in any code block

Is This Answer Correct ?    5 Yes 1 No

what is the diff b/n c and c++ a. dynamic scoping b. nested switching c. declaration of vari..

Answer / ipsit hota

declaration of variables in any code block

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is recursion?

6 Answers  


What is const pointer and const reference?

0 Answers  


Explain register storage specifier.

0 Answers  


How do you compile the source code with your compiler?

0 Answers  


Write a program for Divide a number with 2 and Print the output ( NOTE: Check for divide by zero error).

0 Answers  






Show the declaration for a pointer to function returning long and taking an integer parameter.

0 Answers  


You run a shell on unix system. How would you tell which shell are you running?

0 Answers  


What are arrays c++?

0 Answers  


What is buffer and example?

0 Answers  


Why c++ is the best language?

0 Answers  


Why should you learn c++?

0 Answers  


class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.

2 Answers   Quark,


Categories