Differentiate between the message and method in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Is there something that we can do in C and not in C++?
what is VOID?
How can virtual functions in c++ be implemented?
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; }
Why c++ is so important?
What does getch() do according to the ANSI C++ standard a) Reads in a character b) Checks the keyboard buffer c) Nothing in particular (Its not defined there)
Why use of template is better than a base class?
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
Is structure can be inherited?
When a function is made inline. Write the situation where inline functions may not work.
Write a single instruction that will store an EVEN random integer between 54 and 212 inclusive in the variable myran. (NOTE only generate EVEN random numbers)
Please explain the reference variable in c++?