Tell one difference which is in C and not in C++.
Can we pass arguments in main()
Difference between static and constant variable.
Latest Answer: #include void main(){ if(printf("Hello world")){}} ...
What is the output of following program?#includevoid main(){printf("%d%d",sizeof(NULL),sizeof(" "));}
If we declare a pointer like char *p;how much memory is allocated for pointer variable 'p'.
Struct out {struct in{ char c;int d;}s1,*p1;}a1, *pa1;pa1 = &a1;a1.p1 = &s1;Which is incorrect?a. a1.p1->c b. pa1->p1->c c. a1->p1 d. a1.s1.c
Latest Answer: The major difference between methods and functions is that methods called by the reference variables called objects where as the functions do not having any reference variables. ...
Latest Answer: structure is a collection of data and class is a collection of data and functions.by defalut struct is public whereas class is private ...
1. Difference between "C structure" and "C++ structure".2. Diffrence between a "assignment operator" and a "copy constructor"3. What is the difference between "overloading"
Latest Answer: jhglk; ...
Latest Answer: if both the base class and derived class can have the constructors,if the derived class is to call the constructor of its own using its object,it can.but when it calls its destructor,the compiler calls the destructor of base class.thats why the virtual ...
Latest Answer: In C structures we cannot do operator overloading and in C++ we can. ...
View page [1] 2 3 4 5 6 7 8 9 Next >>

Go Top