How to write a program for swapping two strings without
using 3rd variable and without using string functions.
Answer Posted / sri
main()
{
int a=5,b=3;
a=a+b;
b=a-b;
a=a-b;
printf(" %d %d ",a,b);
getch();
}
| Is This Answer Correct ? | 33 Yes | 42 No |
Post New Answer View All Answers
What does double pointer mean in c?
which type of aspect you want from the student.
What does 1f stand for?
how to find anagram without using string functions using only loops in c programming
what is a constant pointer in C
what are # pragma staments?
In C language what is a 'dangling pointer'?
hi send me sample aptitude papers of cts?
What is scope rule of function in c?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
What does %2f mean in c?
Is multithreading possible in c?
What are the advantages of external class?
Explain pointer. What are function pointers in C?