What is Full Form of C and Why We use C
Answers were Sorted based on User's Feedback
Answer / ravi
i think C is combination of ADA, BASIC and COBOL so we can called combined language
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / prasanthi
it came from BCPL..after B language they introduced C language
| Is This Answer Correct ? | 4 Yes | 5 No |
Answer / ankur
I think c programming language is derived from "B" language which is "BASIC" programming language but in c language compiler is used that is why some people called it is the full form of compiler
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / debayan mitra
The full form of C is combined language. It came as an
offspring of BCPL(Basic Combined programming language).
C is used to develop software.
| Is This Answer Correct ? | 8 Yes | 14 No |
Answer / sakshi
C language was renamed from BCPL second alphabet...
This language was designed fast,reliable,efficient,portable
system software..........
| Is This Answer Correct ? | 4 Yes | 12 No |
What is typeof in c?
how to swap 2 numbers within a single statement?
What are the 4 types of unions?
Why is not a pointer null after calling free?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
Write code for atoi(x) where x is hexadecimal string.
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
What is a list in c?
how to find greatet of 10 numbers without using array?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
How macro execution is faster than function ?