what is c language.
Answers were Sorted based on User's Feedback
Answer / yogesh bhandari
C is a Procedural language,which is devloped in AT and T
lab on 1972.
Dennish Ritchiei is the person who devlope this language
after BCPL(Basic Combined Programming Language).
C has the rich source of operators.This language is the
best language for fresher.
Mainly system programming are devlope in c language.
a translator called COMPILER is used in c language which is
also coded in C Language.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / d
c language is middlelevel langauage
it follows
higher and low level language
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / suganya.s
C is a structured, procedural programming language.C has
been standardized as part of the Portable Operating system.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is null always defined as 0(zero)?
Explain do array subscripts always start with zero?
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(
What is the benefit of using #define to declare a constant?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
What are Macros? What are its advantages and disadvantages?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
how can i get this by using for loop? * ** * **** * ******
What is formal argument?