Answer Posted / thunder
/* swapping two numbers without using temp*/
#include<stdio.h>
int main()
{
int a=10,b=5;
a=a*b;
b=a/b;
a=a/b;
print f("a : %d b: %d",a,b);
}
Is This Answer Correct ? | 12 Yes | 4 No |
Post New Answer View All Answers