My issue
include <stdio.h>
int main(void) {
int X, Y, c;
c = maximum no of customers;
X = no of stoves;
Y = no of minutes;
C = X*Y;
printf(C);
return 0;
}
correct the code
My code
#include <stdio.h>
int main(void) {
int X, Y, c;
c = maximum no of customers;
X = no of stoves;
Y = no of minutes;
C = X*Y;
printf(C);
return 0;
}
Learning course: Practice C
Problem Link: CodeChef: Practical coding for everyone