3. Enter a number and print the multiplication table using a while loop.
Answers
Answered by
1
Answer:
Program #1 : Write a c program to print multiplication table using while loop
int main()
{
int n, i;
printf("Enter a Number ");
scanf("%d",&n);
i=1;
while(i<=10){
printf("%d * %d = %d \n", n, i, n*i);
Explanation:
Similar questions