mirror of
https://github.com/Comp211-SP24/lab-01-Rushilwiz.git
synced 2025-04-09 14:30:19 -04:00
fix: it was a spacing thing
This commit is contained in:
parent
0cd2cf2c39
commit
15f7544677
Binary file not shown.
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user