What is Full Form of C and Why We use C
Answers were Sorted based on User's Feedback
Answer / jyotheeswar
C is a compiler based language so, C is nothing but Compiler
| Is This Answer Correct ? | 9 Yes | 19 No |
Answer / rahul
It is named c because it came after BCPL since the second
letter of BCPL after B is C, hence named as C and not
because C comes after B in English .
It is widely used for developing system level softwares and
applications.
| Is This Answer Correct ? | 4 Yes | 14 No |
Answer / karthik
when C-language is launched.. there was an another language
with names A and B. so,to follow sequence it is named as C
| Is This Answer Correct ? | 13 Yes | 26 No |
What are the different properties of variable number of arguments?
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
What are advantages and disadvantages of recursive calling ?
12 Answers College School Exams Tests, Evolving Systems, HP, Jyoti Ltd, Sage, Wipro,
difference of two no's with out using - operator
What is function prototype in c with example?
What is a const pointer in c?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(“%d”,s.x); }
a value that does not change during program execution a) variabe b) argument c) parameter d) none
main is a predefined or user define function if user defined why? if predefined whay?
Why data types in all programming languages have some range? Why ritche have disigned first time likethat?Why not a single data type can support all other types?
write a program to find lcm and hcf of two numbers??