What do you mean by early binding?
No Answer is Posted For this Question
Be the First to Post Answer
What are the four main data types?
Explain explicit container.
Why is main an int?
What is a vector c++?
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 shallow and deep copies?
write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)
What does flush do?
How are virtual functions implemented in c++?
How do you link a C++ program to C functions?
What is meant by entry controlled loop? What all C++ loops are exit controlled?
What is pointer to member?