Who created c++?


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

Post New Answer

More C++ General Interview Questions

1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?

5 Answers  


What is object oriented programming (oop)?

0 Answers  


What is the difference between while and do while loop? Explain with examples.

0 Answers  


What are the basics of local (auto) objects?

0 Answers  


What is DlgProc?

0 Answers   C DAC,






What does ctime() do?

0 Answers  


Why do we need c++?

0 Answers  


What is the use of data hiding?

0 Answers  


Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?

0 Answers  


Can static member variables be private?

0 Answers  


How do you establish an is-a relationship?

0 Answers  


Can I learn c++ in a week?

0 Answers  


Categories