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
Describe the modifier in c?
What are the three constants used in c?
What is function and its example?
What is a program flowchart and how does it help in writing a program?
What are the advantages of c language?
What is operator precedence?
What is break statement?
Should a function contain a return statement if it does not return a value?
What is the most efficient way to store flag values?
What is calloc()?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is time null in c?
What is the difference between null pointer and wild pointer?
What is the difference between %d and %i?
I heard that you have to include stdio.h before calling printf. Why?