Loops: Multiplication Table
CSC-115 · Semester I · C Programming
#include <stdio.h> int main() { int n = 7; for (int i = 1; i <= 10; i++) { printf("%d x %d = %d\n", n, i, n * i); } return 0; }
Write some code, then press Run. Stdout and errors appear here.