i have some issue in using terminal option
Share the code which you are trying to execute .
#include <stdio.h>
void main()
{
int a, b, result, multiple, devide, subtract;
printf("Please Enter the number:");
scanf("%d%d", &a, &b);
result = a+b;
multiple = a*b;
devide = a/b;
subtract = a-b;
printf("The sum of the number is: %d\n The multiple of the number is: %d\n The devide of the number is: %d\n The subtract of the number is: %d\n", result, multiple, devide, subtract);
}
same thing happening with me
remove semicolon from line 7 after if(a>b)