What is a rooted hierarchy?
No Answer is Posted For this Question
Be the First to Post Answer
What is the best c++ book?
Which programming language should I learn first?
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?
Explain what are mutator methods in c++?
Why is the function main() special?
what are the iterator and generic algorithms.
Explain the difference between realloc() and free() in c++?
Is it possible for the objects to read and write themselves?
Why are pointers not used in c++?
How to avoid changing constant values?
Differentiate between declaration and definition.
What is lambda in c++?