English, asked by zaoman7810, 1 year ago

write aprogram to print a multiplication table of 7

Answers

Answered by sangeeta71
1
I hope this will help you
Attachments:
Answered by saniya3774
0
C PROGRAM
include <stdio.h> int main() { int n, i, range; printf("Enter an integer: "); scanf("%d",&n); printf("Enter the range: "); scanf("%d", &range); for(i=1; i <= range; ++i) { printf("%d * %d = %d \n", n, i, n*i); } return 0; }
THROUGH THIS WE ALSO TABLE WE CAN PRINT TABLES
Similar questions