table of the given number

PHOTO EMBED

Mon Jan 31 2022 19:53:43 GMT+0000 (Coordinated Universal Time)

Saved by @m1racle23 #c

#include <stdio.h>

int main() {
    
    int i=1;
    int n;
    
    printf("enter the number\n");
    scanf("%d" , &n);
    
    do{
        printf("%d\n" , i*n);
        
        i++;
    }while(i <= 10);
	//code
	return 0;
}
content_copyCOPY