what is c programming?
Answers were Sorted based on User's Feedback
Answer / keerthi
c is procedure oriented programming language. In c program
execution starts from main().c is basic language for some
languages like c++,java etc.c is platform dependent and case
sensitive language.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / renisha
c is powerful system language even which user are using to
compiler as source code. it used input and display the output.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / priyanka mali
C Is the procedure oriented language, basically uses firstly
compilers which accepts source code from compliers as input
and produces .exe as output.it is a first usr friendly
language which takes input in the form of statements / usr
language and givesdesired outpu.
| Is This Answer Correct ? | 1 Yes | 0 No |
What are comments and how do you insert it in a C program?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
what is the use of a array in c
How to develop software using "c" programming?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
what is ur strangth & weekness
0 Answers Cognizant, LG Soft, NetEnrich,
What does the error message "DGROUP exceeds 64K" mean?
If errno contains a nonzero number, is there an error?