Why do we use stdio h and conio h?
No Answer is Posted For this Question
Be the First to Post Answer
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
Is sizeof a keyword in c?
how c source file in converted to exe file
What does s c mean in text?
What is difference between union and structure in c?
What is break statement?
What are the disadvantages of external storage class?
int x=5; printf("%d%d%d",x,x<<2,x>>2);
create a C program that displays one z,two y's,three x's until twenty six A's. plzz answer i need it tomorrow.
What is the difference between struct and union in C?
In which area global, external variables are stored?