multiplication operator in c

C
int main()
{
	int a = 5;
	int b = 3;
	int num = a * b;
    printf("%d", num);
}
Source

Also in C: