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 |
How do I read the arrow keys? What about function keys?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
What is the difference between ++a and a++?
What is the difference between static and global variables?
is it possible to create your own header files?
Why do we use int main?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What is pointers in c with example?
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
Is c++ based on c?
what is the flow of execution in cprogram? ex:printf();,scanf();
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }