This repository has been archived on 2023-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
VSMechatronics/Exercises/C9/ex5.c

10 lines
104 B
C

#include <stdio.h>
int main() {
for (int i = 1; i <= 15; i++) {
printf("%d\n", i);
}
return 0;
}