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
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What are the advantages of using linked list for tree construction?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What is pivot in c?
What is difference between function overloading and operator overloading?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
can we implement multi-threads in c.
Which is the memory area not included in C program? give the reason
Is malloc memset faster than calloc?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
When is a null pointer used?
explain what is a newline escape sequence?
Explain argument and its types.
What is the use of function overloading in C?
What is the purpose of sprintf?