Explain goto?
No Answer is Posted For this Question
Be the First to Post Answer
What does 2n 4c mean?
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(); }
Can we include one C program into another C program if yes how?
Explain what is the best way to comment out a section of code that contains comments?
What is an lvalue?
What is difference between scanf and gets?
What does == mean in texting?
Why flag is used in c?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
What is the difference between functions getch() and getche()?
How will you find a duplicate number in a array without negating the nos ?