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

Post New Answer

More C Interview Questions

what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā€œ%d\nā€,j); }

14 Answers   Oracle,


main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }

1 Answers   Accenture, Vector,


main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?

9 Answers   Ramco,


What is volatile variable how do you declare it?

0 Answers  


code for selection sort?

1 Answers  






what is the difference between exit() and _exit() functions?

2 Answers  


Explain what’s a signal? Explain what do I use signals for?

0 Answers  


What is the correct declaration of main?

0 Answers  


The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................

14 Answers   HOV Services, IBM, Potty,


Why ordinary variable store only one value  

0 Answers  


can any one provide me the notes of data structure for ignou cs-62 paper

0 Answers   Ignou,


while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.

1 Answers   TCS,


Categories