What are the advantage of c language?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to compute the following 1!+2!+...n!
Explain high-order bytes.
Write a program to generate random numbers in c?
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
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
What is the sizeof () operator?
Is c dynamically typed?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
Why do we use int main?
Place the #include statement must be written in the program?
Can math operations be performed on a void pointer?
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); } }