i^=j;
j^=i;
i^=j;
value of i,j
Answer / xyz
this code snippet will swap the value of i and j
This code works same as
i=i+j;
j=i-j;
i=i-j;
| Is This Answer Correct ? | 2 Yes | 1 No |
which are the 4 members functions in c++ objects that can either be declared explicitly by programmer or implementation if nt available.
Why is polymorphism important in oop?
What is abstraction?
What is the main feature of oop?
What is the outcome of the line of code "cout<<abs(- 16.5);"? 1) 16 2) 17 3) 16.5
What is the main purpose of inheritance law?
In what situation factory design patterns,DAO design patterns,singleton design patterns should be applied.?
What is advantage of inheritance?
What does the keyword "static" mean?
Why is oop better than procedural?
What is abstraction and encapsulation?
Is following functions are said to be overloaded? int add(int a,int b) char *add(int a,int b)