/*
 *   Sample Test1.c	
 */

int foo(int i, int j, float f )
{
	printf(" \n Is there any thing wrong !! ");
}

void main() 
{
	int i , j = 2;
        foo();
	printf(" Twelve =%d", 10 + j );
	i = foo( 1, 2.0, j);

	foo(1, j , );

        return 10000;
 }
/* the next thing should produce a syntax error */

      i = j ;

/* comment at end of file, with no newline after that; is this OK ? */
