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 can you be sure that a program follows the ANSI C standard?
Tell me when would you use a pointer to a function?
How macro execution is faster than function ?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
To what value do nonglobal variables default? 1) auto 2) register 3) static
Explain what is wrong with this program statement? Void = 10;
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
what is the similarities between. system call and library function?
Explain 'bit masking'?
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
What is the mean of this statement:: if(int i=0 * i=9)
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions