write a
programe to display multiplaca
tion table of the number given by the
user
Answers
Answered by
1
Answer:
#include <stdio.h>
int main() {
int n, i;
printf("Enter an integer: ");
scanf("%d", &n);
for (i = 1; i <= 10; ++i) {
printf("%d * %d = %d \n", n, i, n * i);
}
return 0;
}
Explanation:
c++ is the worst to do but ya the easy ones I know so.... here
Similar questions
English,
1 month ago
Math,
3 months ago
English,
3 months ago
Computer Science,
9 months ago
Math,
9 months ago