My issue
Wrong answer: failed on hidden test case
My code
#include <stdio.h>
int main() {
// your code goes here
int n;
printf("Enter an integer: 4\n");
scanf("%d",&n);
for(int i = 1; i <= 10; ++i) {
printf("%d * %d = %d \n", n, i, n*i);
}
return 0;
}
Learning course: Programming and Problem solving using C
Problem Link: https://www.codechef.com/learn/course/ciet-programming-c/CIETPC14/problems/CLB062