Code Snippets C

#include
int f(void); /* prototype */
int main(void)
{
int j;
j = f( );
printf("%d", j);
return 0;
}
int f(void)
{
return 10;
}