Skip to content
Snippets Groups Projects
multiply.c 189 B
Newer Older
Nadar Athis's avatar
Nadar Athis committed
#include<stdio.h>
int main(){
    int x,y,z;
    printf("enter the number you want to print: ");
    scanf("%d",&x);
    for(y=1;y<=20;y++){
    printf("%d x %d = %d\n",x,y,z);
    }
    
}