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 |
What is a pointer on a pointer in c programming language?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
main() { printf("hello%d",print("QUARK test?")); }
what is the advantage of using SEMAPHORES to ORDINARY VARIABLES???
Explain how does free() know explain how much memory to release?
What does %c do in c?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
Explain the use of function toupper() with and example code?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?