My issue
Can you please suggest what’s wrong with this code?
My code
#include <stdio.h>
int main(void) {
int x, y, h;
scanf("%d",&x);
scanf("%d",&y);
scanf("%d",&h);
printf("%d", x + y * h);
return 0;
}
Learning course: CSEIPFOIA: Programming and Problem Solving
Problem Link: Problem - 4 Practice Problem in CSEIPFOIA: Programming and Problem Solving - CodeChef