Who created c++?
No Answer is Posted For this Question
Be the First to Post Answer
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?
What is object oriented programming (oop)?
What is the difference between while and do while loop? Explain with examples.
What are the basics of local (auto) objects?
What is DlgProc?
What does ctime() do?
Why do we need c++?
What is the use of data hiding?
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
Can static member variables be private?
How do you establish an is-a relationship?
Can I learn c++ in a week?