write a program to input 10 strings and compare without
using strcmp() function. If the character of one string
matches with the characters of another string , sort them
and make it a single string ???
example:- str1="Aakash" st2="Himanshu" str="Uday"
output:- Aakashimanshuday (please post the answer as quickly
as possible)
No Answer is Posted For this Question
Be the First to Post Answer
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
"I LOVE MY COUNTRY" write a c program to get "COUNTRY MY LOVE I" as the output. Use any other programming language. It is not mandatory to use C.
11 Answers ABC Infotech, ADP, College School Exams Tests, Kovair,
What are the different file extensions involved when programming in C?
write a program to add two numbers of any size.....(remember any size)
Is it possible to pass an entire structure to functions?
What is a pointer and how it is initialized?
What do you mean by a local block?
Explain can you assign a different address to an array tag?
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
How do you define a string?
c program to arrange digits in a no in ascending and descending order
What is type qualifiers?