multiplication of 4 in c language code example
Example 1: multiplication of two numbers in c
int num1,num2;
printf("%d",num1*num2);
Example 2: multiplication in c
//use the "*"
/*var*/ * /*var*/;
int num1,num2;
printf("%d",num1*num2);
//use the "*"
/*var*/ * /*var*/;