Multiplication table Process (Use While)

July 17, 2012 12:12 pm C, Private
#include <stdio.h>
main() {
	int x,y=1;
	printf("Enter number : ");
	scanf("%d",&x);
	while(y<=12) {
		printf("%d * %d = %d \n",x,y,(x*y));
		y++;
	}
}