Skip to main content

Multiplication table of 'n'

#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 ); } }




Comments