write a programe to print the table of any given number using while loop
Answers
Answered by
0
Answer:
1. #include <stdio.h>
2. int n, i;
3. printf("Enter a Number ");
4. scanf("%d",&n);
5. i=1;
6. while(i<=10){
7. printf("%d * %d = %d \n", n, i, n*i);
8. ++i;
Similar questions