what is C?
Answers were Sorted based on User's Feedback
Answer / smily
c is a standard programming language..which is the base for
all other programming languages, but as no security...
| Is This Answer Correct ? | 17 Yes | 1 No |
Answer / manu
c is a highlevel language,c is a basic language of all
other languages,
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / pradeep kumar
C is a procedural oriented programming language.
it has fast execution compare to c++.
it is developed at bell labs by dennis ritchi.
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / vamc
C (pronounced /ˈsiː/ see) is a general-purpose computer programming language developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system.[2]
Although C was designed for implementing system software,[5] it is also widely used for developing portable application software.
C is one of the most popular programming languages of all time[6][7] and there are very few computer architectures for which a C compiler does not exist. C has greatly influenced many other popular programming languages, most notably C++, which began as an extension to C.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / ajayash
c is a programming language..before it was known as b-
language...supports all operators..
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / manish
it is a simple English alphabet C nothing else.
but we can say also C,c is a computer language but is
different only C. because C is alphabets.
| Is This Answer Correct ? | 8 Yes | 29 No |
Total of how many functions are available in c?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
what different between c and c++
Simplify the program segment if X = B then C ← true else C ← false
hi how to convert program from notepad to turboc editor can u please help me
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What is Bitwise Operator and how it works?
Explain the concept and use of type void.
can we initialize all the members of union?
define c
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.