Why c++ does not have finally?
No Answer is Posted For this Question
Be the First to Post Answer
Why pure virtual functions are used if they don't have implementation / When does a pure virtual function become useful?
Name the operators that cannot be overloaded in C++?
What is the difference between an enumeration and a set of pre-processor # defines?
Explain the virtual inheritance in c++.
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?
How do I run a program in notepad ++?
Explain what you mean by a pointer.
What are stacks? Give an example where they are useful.
What are inline functions?
What is time_t c++?
What is multithreading and what is its use?Whats are multithreading techniques used in C++?
What is a breakpoint?