What is Full Form of C and Why We use C
Answers were Sorted based on User's Feedback
Answer / jyotheeswar
C is a compiler based language so, C is nothing but Compiler
| Is This Answer Correct ? | 9 Yes | 19 No |
Answer / rahul
It is named c because it came after BCPL since the second
letter of BCPL after B is C, hence named as C and not
because C comes after B in English .
It is widely used for developing system level softwares and
applications.
| Is This Answer Correct ? | 4 Yes | 14 No |
Answer / karthik
when C-language is launched.. there was an another language
with names A and B. so,to follow sequence it is named as C
| Is This Answer Correct ? | 13 Yes | 26 No |
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
how to add our own function in c library please give details.?
how can f be used for both float and double arguments in printf? Are not they different types?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
How do I create a directory? How do I remove a directory (and its contents)?
Are there namespaces in c?
Explain the priority queues?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
what do you mean by inline function in C?