wt is d full form of c
Answers were Sorted based on User's Feedback
Answer / vishwanath pillay
It stands for nothing.
C language was more influenced by 'B' Language and was then
named 'C' as a SUCCESSOR language.
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / ruturaj
There is no meaning of C. It is just a middle level
language. It was developed after the language B.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / r.prasad
c means nothing.
after b language it was developed so that they were giving
name as c language.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / himesh
C is a computer language. It is a procedural and case sensitive language.
| Is This Answer Correct ? | 4 Yes | 13 No |
what is void pointer?
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
Difference between goto, long jmp() and setjmp()?
How we can write a value to an address using macro..?
how to swap 2 numbers within a single statement?
What are static variables in c?
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
What is difference between array and structure in c?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Can a local variable be volatile in c?
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
c program to subtract between two numbers without using '-' sign and subtract function.