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: We can list as:1. In classes the default scope is private whereas in structures u have public.equir2.Also, u can define the scope according to is requiremeuctunts in claasses.3. In classes u can create fn nd methods which is not so in d case of structures.4.You ...
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 ...
View page [1] 2 3 4 5 6 7 8 9 Next >>

Go Top