about summary refs log tree commit diff stats
path: root/1.6.c
diff options
context:
space:
mode:
Diffstat (limited to '1.6.c')
-rw-r--r--1.6.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/1.6.c b/1.6.c
index bb9e778..7156561 100644
--- 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");