
#include <stdio.h>



void factorial( int X )
{
	int temp;
	
	temp = X - 1;
	while( temp > 1 )
	{
		X = X * temp ;
		temp = temp - 1;	
	}
	printf("Value of factorial %d \r\n", X );

	return;
}

int main() 
{

/*	for( int Index = 2; Index <= 100; Index= Index+1)
	{
		factorial( Index );
	}

	*/
	int Index,Index2;
	for(  Index = 0; Index < 10 ; Index = Index +1)
	{
		for( Index2 = 0; Index2 < 3; Index2 = Index2 + 1)
		{
			//printf( "Index %d Index2 %d \r\n ", Index, Index2 );
		}
	}
	printf( "Index %d Index2 %d \r\n ", Index, Index2 );

	return 0;
}
