What is Full Form of C and Why We use C
Answers were Sorted based on User's Feedback
Answer / bipin
It means only that this is after B. from which C is developed.
| Is This Answer Correct ? | 79 Yes | 35 No |
Answer / areukanjad
I Think Its a Language and Its Full Form of Compiler. And We
use this Language for Developing for Software Base.
| Is This Answer Correct ? | 72 Yes | 47 No |
Answer / ravi
c was designed after Ada and Basic .so A for ada and B for
basic , so a new language was developed by Denise Rithchie
and it was C.
| Is This Answer Correct ? | 32 Yes | 11 No |
Answer / santoshkumar
c is a procedure oriented language or structure oriented
language
| Is This Answer Correct ? | 20 Yes | 6 No |
It was named "C" because many of its features were derived
from an earlier language called "B".
| Is This Answer Correct ? | 17 Yes | 6 No |
Answer / rehana
c is a basic language c programming means combined
programming its comes from BCPL(BASIC COMBINED PROGRAMMIN
LANGUAGE) its used to develope system and application
softwares.
| Is This Answer Correct ? | 16 Yes | 10 No |
Answer / dileep kumar
C is named bcz it id based on compiler.and descover after ADA , BASIC ,COBOL
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / bhavin tosar
‘C’ is a formal constructed Language Designed to Communicate Instructions to a Machine Particularly a Computer.
‘C’ is Programming Language it was developed by Denis Ritchie at “AT & T’s Bell Laboratories.
‘C’ Middle Level Language & C++ is High Level Language
| Is This Answer Correct ? | 7 Yes | 3 No |
Answer / ramprakash
'C' means controller language which controls various
operations with complxity......
| Is This Answer Correct ? | 11 Yes | 9 No |
how i m write c program 1.check prime number 2.prime number series
How can I manipulate individual bits?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
Explain the use of 'auto' keyword
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
Taking an example,differentiate b/w loader and linker ?
What is the explanation for prototype function in c?
regarding pointers concept
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
What is an auto variable in c?