Â
#include <stdio.h>
int main()
{
int n;
int i = 1;
printf("Enter the no. to get its table : \n");
scanf("%d", &n);
do
{
printf("%d x %d = %d \n", n, i, n * i);
i++;
} while (i <= 10);
return 0;
}
//..........Coded by ARADHANA MISHRA
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP