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();
}
In a byte, what is the maximum decimal number that you can accommodate?
Why ordinary variable store only one value
How to find a missed value, if you want to store 100 values in a 99 sized array?
What is #include stdlib h?
C program to read the integer and calculate sum and average using single dimensional array
Explain the use of 'auto' keyword in c programming?
what is d pitfalls of registers variables
Is it possible to create recycle bin in mobiles?
Which driver is a pure java driver
What are two dimensional arrays alternatively called as?
Is c is a high level language?
Explain low-order bytes.