Do class method definitions?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by delegate? Can a user retain delegates?
Can non-public members of another instance of the class be retrieved by the method of the same class?
Function can be overloaded based on the parameter which is a value or a reference. Explain if the statement is true.
What is data binding in c++?
How can I learn c++ easily?
What is std namespace in c++?
What is an explicit constructor?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
What does the linker do?
Is java made in 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; }
Can we use this pointer inside static member function?