how to swap two numbers with out using temp variable
Answer Posted / kusum
if (a>b)
temp=a;
a=b;
b=temp;
Is This Answer Correct ? | 0 Yes | 21 No |
Post New Answer View All Answers
Evaulate: 22%5 a) 2 b) 4 c) 0
What is c++ flowchart?
write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)
What is private public protected in c++?
Which programming language should I learn first?
In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h
How to declare a pointer to an array of integers?
How come you find out if a linked-list is a cycle or not?
Which ide is best for c++?
If a base class is an adt, and it has three pure virtual functions, how many of these functions must be overridden in its derived classes?
What is the two main roles of operating system?
what is pre-processor in C++?
Is python better than c++?
Should the member functions which are made public in the base class be hidden?
What is a constant reference?