What is 2 d array in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain logical errors? Compare with syntax errors.
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
What does double pointer mean in c?
What is the easiest sorting method to use?
Read two numbers from keyboard and find maximum of them?
what is structuer?
what is a non volatile key word in c language?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What are structural members?
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(); }
sir i got 146 correct question & i have also the advantage of height so will they consider my marks as 146+3=149.can any body tell me how they consider my height marks.
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?