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/C9/ex5.c
2023-10-06 13:47:33 +01:00

10 lines
104 B
C

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