Explain the difference between abstract class and interface in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Is c++ a high level language?
What is the difference between method overloading and method overriding 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?
Can a constructor be private?
how to find the maximum of 10 numbers ?
Define linked lists with the help of an example.
Can turbo c++ run c program?
What is near, far and huge pointers? How many bytes are occupied by them?
Declare a class vehicle and make it an abstract data type.
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
What is the difference between a definition and a declaration?
What is virtual methods?