commit fede6d23b36ce590b1c7de2249b28375d1575434
parent 44f176cdff8e1f076218542db9c9abb19e2b8097
Author: phoebos <ben@bvnf.space>
Date: Wed, 19 May 2021 03:47:13 +0100
spacing
Diffstat:
2 files changed, 3 insertions(+), 14 deletions(-)
diff --git a/1.6.c b/1.6.c
@@ -33,17 +33,17 @@ int main (int argc, char *argv[]) {
// we start printing each bar as i gets to be within the bar's value
for (i = max + 2; i > 0; i--) {
// side axis
- printf("%3d |", i);
+ printf("%4d |", i);
for (int j = 0; j < NASCII; ++j)
printf("%s", i <= ascii[j] ? "*" : " ");
printf("\n");
}
// bottom axis
- printf(" +");
+ printf(" +");
for (j = '!'; j <= '~'; ++j)
printf("-");
// bottom labels
- printf("\n |");
+ printf("\n |");
for (j = '!'; j <= '~'; ++j)
printf("%c", j);
printf("\n");
diff --git a/max.c b/max.c
@@ -1,11 +0,0 @@
-#include <stdio.h>
-#include <time.h>
-int main() {
- char i = 0;
- while (1) {
- printf("%d\n", i);
- i++;
- sleep(1);
- }
- return 0;
-}