fork download
#include <stdio.h> 
int main ()
{
	/* variable definition: */
	int a, b, c;

	/* variable initialization */
	a = 10; 
	b = 20; 
	c = a * b;
	printf("Integers (a,b) and product (c) are : %d,%d,%d \n", a,b,c);
		return 0;
}
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
Integers (a,b) and product (c) are : 10,20,200