fix: it was a spacing thing

This commit is contained in:
Rushil Umaretiya 2024-02-05 03:02:58 -05:00
parent 0cd2cf2c39
commit 15f7544677
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
2 changed files with 3 additions and 4 deletions

Binary file not shown.

View File

@ -33,12 +33,11 @@ int main() {
}
}
printf("Total lines over 50 chars: %d\n", total);
printf("Offending lines:");
printf("\nTotal lines over 50 chars: %d\n", total);
printf("Offending lines: ");
for (int i = 0; i < total; i++) {
printf(" %d,", lines[i]);
printf("%d, ", lines[i]);
}
printf("\n");
return 0;
}