mirror of
https://github.com/Comp211-SP24/lab-01-Rushilwiz.git
synced 2025-04-21 11:30:18 -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("\nTotal lines over 50 chars: %d\n", total);
|
||||||
printf("Offending lines:");
|
printf("Offending lines: ");
|
||||||
for (int i = 0; i < total; i++) {
|
for (int i = 0; i < total; i++) {
|
||||||
printf(" %d,", lines[i]);
|
printf("%d, ", lines[i]);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user