My issue
Expected statment wrong means
My code
#include <stdio.h>
int main() {
// your code goes here
int n;
int i;
printf("entre n \n");
scanf("%d",&n);
for(i=1;i>=10;i++) {
printf("%d * %d =%d\n", n , i , n*i);
}
Learning course: Programming and Problem solving using C
Problem Link: https://www.codechef.com/learn/course/ciet-programming-c/CIETPC14/problems/CLB062