0% found this document useful (0 votes)
8 views1 page

Bar #Include "Bar.h" #Include "Foo.h" Int Bar (Int X) (Return Foo (X) - 1 )

This C program defines a function called bar that takes an integer as a parameter, includes the header files bar.h and foo.h, and returns the result of calling the foo function on the parameter minus 1.

Uploaded by

singamroopa
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views1 page

Bar #Include "Bar.h" #Include "Foo.h" Int Bar (Int X) (Return Foo (X) - 1 )

This C program defines a function called bar that takes an integer as a parameter, includes the header files bar.h and foo.h, and returns the result of calling the foo function on the parameter minus 1.

Uploaded by

singamroopa
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

bar

#include "bar.h"
#include "foo.h"
int
{

bar(int

x)

return foo(x)-1;
}

Page 1

You might also like