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
How can I delete a file?
write a program to create a sparse matrix using dynamic memory allocation.
What is 2 d array in c?
What is an arrays?
#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); }
which is an algorithm for sorting in a growing Lexicographic order
simple program of graphics and their output display
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
What are the advantages of Macro over function?
Can a variable be both const and volatile?
Explain about the functions strcat() and strcmp()?
How arrays can be passed to a user defined function
What is graph in c?
What the different types of arrays in c?
how to count no of words,characters,lines in a paragraph.