Any table

 #include <stdio.h>


int main() {

    int n, i;

    printf(" whose table : ");

    scanf("%d",&n);

    for ( i=0 ; i<11 ; i++){

        

        printf("%d\n", (n*i));

    }

    

    

    

    

    

    

    

    

    return 0;

}

Comments

Popular posts from this blog

Sum of Even Numbers till N

Find the Runner-Up Score!

Print All Substrings