WHO WROTE C LANGUAGE?
Answers were Sorted based on User's Feedback
What are the advantages of using linked list for tree construction?
There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
Explain how do you determine the length of a string value that was stored in a variable?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
Explain the difference between getch() and getche() in c?
What is c language & why it is used?
What are extern variables in c?
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
Why does everyone say not to use scanf? What should I use instead?
What is the right type to use for boolean values in c? Is there a standard type?