How we can differentiate between a pre and post increment operators during overloading?
No Answer is Posted For this Question
Be the First to Post Answer
How does a C++ structure differ from a C++ class?
What is a string example?
What are the advantages of c++? Explain
What is the Standard Template Library?
what is the basic concept of c++(object oriented programing)
What are activex and ole?
List out some of the object-oriented methodologies?
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; }
Can create new c++ operators?
an operation between an integer and real always yeilds a) integer result b) real result c) float result
What is namespace & why it is used in c++?
What are the two types of comments, and how do they differ?