write a program in Q Basic to enter any number and display their table .
Answers
Answered by
0
Answer:
QBasic has lot of uses in application side programming. Even in major banking applications QBASIC are used to develop some of the modules and later on integreated to the main system. One of the main advantage of QBASIC is it is easier to develop and also easily portable across applications
mark me brainlist
Answered by
0
Answer:
#include <stdio.h>
int main() {
int num, i = 1;
printf("
Enter any Number:");
scanf("%d", &num);
printf("Multiplication table of %d: ", num);
while (i <= 10) {
printf("
%d x %d = %d", num, i, num * i);
i++;
}
return 0;
}
#answerwithquality & #BAL
Similar questions