C Programming and Technical Programming Program

In the following code;
include
main()
{ FILE *fp; fp= fopen("trial","r"); }
fp points to:

Read Solution (Total 4)

C Other Question

4444444
4333334
4322234
4321234
4322234
4333334
4444444
what is printed when the following program is compiled and executed?
int
func (int x)
{
if (x<=0)
return(1);
return func(x -1) +x;
}
main()
{
printf("%dn",func(5));
}