C Programming and Technical Programming Program

Find the output for the following C program
fn f(x)
{ if(x<=0)
return;
else f(x-1)+x;
}

Read Solution (Total 5)

C Other Question

What is the sizeof(long int)
Data recovery is done in which layer?