Why was c++ created?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30

2 Answers   AIG, Quark,


write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.

0 Answers  


Write the program for fibonacci in c++?

20 Answers   TATA, Wipro,


What is this pointer in c++?

1 Answers  


What are iterators in c++?

0 Answers  






Is map ordered c++?

0 Answers  


Comment on local and global scope of a variable.

0 Answers  


Do vectors start at 0 c++?

0 Answers  


What are the advantages of using const reference arguments in a function?

0 Answers  


What are advantages of C++ when comparing with C?

18 Answers   HP, iGate, TCS,


Is there any difference between dlearations int* x and int *x? If so tell me the difference?

16 Answers   Lason,


Specify some guidelines that should be followed while overloading operators?

0 Answers  


Categories