Multiplication table Process

July 10, 2012 12:13 pm C, Private
/*
Multiplication table Process
Build By C Language
Dev By :: Weerayut Hongsa (Kusumoto)
http://kusumoto.co
*/
#include <stdio.h>
 
main() {
	int x; //announce variable
	int y; //announce variable
	int z; //announce variable
	printf("Enter Number : "); //show msg input
	scanf("%d",&z); //get input data
	for(x=1; x<=12; x++) //loop Condition
	if (y=x*z) 
	printf("%d * %d = %d \n",z,x,y); //show data
	printf("Complete! \n");
}