tell me the full form of c?
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
C is the successor of the language of B... so their is no
any full forms for C... it's just an alphabet
| Is This Answer Correct ? | 26 Yes | 4 No |
Answer / v amsi
although some says that C's abbreviation is compiler (as if
it is compiler based language) i will agree vth first answer
| Is This Answer Correct ? | 10 Yes | 5 No |
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
What are variables and it what way is it different from constants?
Can u return two values using return keyword? If yes, how? If no, why?
write a c program to find largest of three numbers using simple if only for one time.
writw a program to insert an element in the begning of a doubly linked list
Explain is it better to bitshift a value than to multiply by 2?
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
Program to simulate second clock
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
Find MAXIMUM of three distinct integers using a single C statement
What is size of union in c?