write a c program using for, while, do while loops
Attachments:
Answers
Answered by
3
Program to print table for the given number using do while loop
#include<stdio.h>
int main(){
int i=1,number=0;
printf("Enter a number: ");
scanf("%d",&number);
do{
printf("%d \n",(number*i));
i++;
More items...
Similar questions