how to sort two array of characters and make a new array of
characters.
Answer / vijay
first merge two arrays and eliminate duplicate elements and
we can sort it
| Is This Answer Correct ? | 5 Yes | 3 No |
how to find string length wihtout using c function?
Write a program to generate random numbers in c?
How will you write a code for accessing the length of an array without assigning it to another variable?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Write a program to print all permutations of a given string.
What is adt in c programming?
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
Is exit(status) truly equivalent to returning the same status from main?
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }