1
Fork 0
mirror of https://github.com/RGBCube/CSAssignments synced 2025-06-18 12:02:09 +00:00

Add a newline to example.c

This commit is contained in:
RGBCube 2022-11-04 21:07:36 +03:00
parent 09b85fa1eb
commit 5bdbad1aa0

View file

@ -2,7 +2,7 @@
int main() {
for (int i = 0; i < 10; i++) {
printf("Example");
printf("Example\n");
}
return 0;
}