HomeArjun sapkota How to find table of any number in c programming Arjun Sapkota January 20, 2020 0 Comments Facebook Twitter #include <stdio.h> void main() { int j,n; printf("Input the number (Table to be calculated) : "); scanf("%d",&n); printf("\n"); for(j=1;j<=10;j++) { printf("%d X %d = %d \n",n,j,n*j); } } Tags Arjun sapkota C programming HTML JavaScript Programming Web page development Facebook Twitter
Post a Comment