what is meant by c
Answers were Sorted based on User's Feedback
Answer / arunprasath
c is a structured oriented programming.developed by dennis
ritche in 1970.in c ,we are having only objects.There is no
security and reusuability.
| Is This Answer Correct ? | 66 Yes | 15 No |
Answer / matloob
c is a middle level language.
c is the mother of all the language.
c language is not a machine independent language.
| Is This Answer Correct ? | 22 Yes | 10 No |
Answer / shruti
C in particular does not mean anything..
A language named "B" was invented by ken Thompsan,
but there were a few problem.
Dennis Ritchie wrote a new programing language which
overcame all the flaws in "B"..
That language was "C"..
I think becoz it came after "B", he named it C..
we can also expect D - Z..;-) jokes apart..
but no more prog languages yaar.. :-(
we have enuf of them..
| Is This Answer Correct ? | 20 Yes | 9 No |
Answer / k pavan
c is a programmic lunge whais was introduced tothe world in
1972 by dennies reche. its plays a majour role in comptr
programming.and also it is basic 4 all other language.
| Is This Answer Correct ? | 15 Yes | 4 No |
Answer / kumar
c is a procedure oriented programming language.It is
developed by Dennis Ritchie in 1972. It is new innovation of
the computer programming language.
It is also the best standard computer programming language.
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / kaleeswaran.k
c program is an objectives oriented program.itz developed by
dennis ritchie in 1970.itz one of the old languages.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / jo randy
c is the mother of all programming language. simply say it
is a structure oriented programming. developed by dennis
ritchie in 1972.
And it is the most popular language for writing the system
software and also the application.
| Is This Answer Correct ? | 5 Yes | 3 No |
what is difference between array and structure?
44 Answers College School Exams Tests, CTS, Google, HCL, IBM, Motorola, TCS,
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
64/square(4)
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
What is string constants?
what is the different between if-else and switch statment (other than syntax)
26 Answers CTS, Oracle, Scorpos,
what is the difference between structural,object based,object orientd programming languages?
Is c procedural or object oriented?
Describe static function with its usage?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
#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); }
Explain why c is faster than c++?