How to write a program for swapping two strings without
using 3rd variable and without using string functions.

Answer Posted / sivaraj

Questions is to swap the string not for integers so the
above answers are wrong.

Is This Answer Correct ?    47 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I delete a file?

822


write a program to create a sparse matrix using dynamic memory allocation.

4610


What is 2 d array in c?

751


What is an arrays?

827


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

828


which is an algorithm for sorting in a growing Lexicographic order

1577


simple program of graphics and their output display

1698


in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.

7766


What are the advantages of Macro over function?

1598


Can a variable be both const and volatile?

874


Explain about the functions strcat() and strcmp()?

785


How arrays can be passed to a user defined function

779


What is graph in c?

808


What the different types of arrays in c?

804


how to count no of words,characters,lines in a paragraph.

4149