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
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
What is difference between scanf and gets?
what is the difference between const volatile int i & volatile const int j;
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
what is pointer?
13 Answers HCL, TCS,
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
Explain about the functions strcat() and strcmp()?
Why flag is used in c?
develop algorithms to add polynomials (i) in one variable
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
disadvantages of realloc ?