Multiplication table of 'n' By Nithin May 09, 2019 #include <stdio.h> int main() { int n; printf("Enter the value of n : "); scanf("%d" , &n ); printf("\n"); for(int i = 1 ; i <= 10; i++ ) { printf("%d * %d = %d\n", n, i, n*i ); } } Link : https://repl.it/@nithin_gudla/multiplicationtable Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment