What is the object serialization?
No Answer is Posted For this Question
Be the First to Post Answer
what is scupper?
. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?
What is compilation?
what do you mean by memory management operators
this is to swap to strings....but in output the whole strings are swapped leaving first as it is...why it is so #include<iostream.h> int main() { char a[]="ajeet"; char b[]="singh"; long x=*a; long y=*b; cout<<x<<":"<<y; x=x+y; y=x-y; x=x-y; *a=x; *b=y; cout<<x<<":"<<y; cout<<&a<<endl; cout<<&b<<endl; }
What are the two types of polymorphism?
How do you declare A pointer to function which receives an int pointer and returns a float pointer
Write a Program to find the largest of 4 no using macros.
Differentiate between a template class and class template in c++?
How do you decide which integer type to use?
Define private, protected and public access control.
What is iomanip c++?