WRITE A SIMPLE C++ PROGRAM TO SWAP TWO NOS WITHOUT USING TEMP
Answers were Sorted based on User's Feedback
Answer / vinodhini r
main()
{
int a,b;
scanf("%d %d",&a,&b);
a=a+b;
b=a-b;
a=a-b;
printf("%d %d",a,b);
}
| Is This Answer Correct ? | 26 Yes | 2 No |
explain sub-type and sub class? atleast u have differ it into 4 points?
what is the difference between class and object?
Write a program to sort the number with different sorts in one program ??
How do you achieve polymorphism?
When not to use object oriented programming?
sir plz send me a set of questions that been frequently held in written examination during campus selection.
WHY FUCTION OVERLOADING DOSENOT RETURN A RETEN TYPE
What is oop in simple words?
How to hide the base class functionality in Inheritance?
write string class as your own class in java without using any built-in function
write a function that takes an integer array as an input and finds the largest number in the array. You can not sort array or use any API or searching needs?
2 Answers IBMS, Zycus Infotech,
what is abstract class ? when is used in real time ? give a exp