WHO WROTE C LANGUAGE?
Answers were Sorted based on User's Feedback
What happens if header file is included twice?
write a c program to print the values in words eg:- 143 written it has (one hundred and forty three)& 104, 114 are also written words
5 Answers Captronic, DELL, Google, IBM, Mithi, RCC, Wipro,
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)
How do I create a directory? How do I remove a directory (and its contents)?
What is a nested formula?
C program to find frequency of each character in a text file?
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
I need a sort of an approximate strcmp routine?
What is the difference between getch() and getche()?
What functions are used in dynamic memory allocation in c?