What is the best c++ book for beginners?
No Answer is Posted For this Question
Be the First to Post Answer
Why can templates only be implemented in the header file?
Is linux written in c or c++?
Write about the role of c++ in the tradeoff of safety vs. Usability?
Which software is used for c++ programming?
What relational operators if statements in c++?
In which memory a class gets stored(in heap /in stack)? And why??
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; }
. 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 meant by entry controlled loop? What all C++ loops are exit controlled?
Explain the scope of resolution operator.
What are class and object in C++?
How to avoid changing constant values?