Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Aligning Output Values in C

Tags:

c

printf

stdio

So I'm working on a program which needs to format output. The output is supposed to be aligned, and it does do so with small numbers:

This works

But then when I give big numbers, it no longer works:

This doesn't work

My code is really but here's the part that prints the main output:

/* The following code prints out the data */

    printf("\n\nStatistics: \n\n");
    printf("Descrip\t\tNumber:\t\tTotal:\t\tAverage:\n\n");
    printf("Normal\t\t%d\t\t%d\t\t%d\n\n",normal_counter,normal_total,normal_average);
    printf("Short\t\t%d\t\t%d\t\t%d\n\n",short_counter,short_total,short_average);
    printf("Long\t\t%d\t\t%d\t\t%d\n\n",long_counter,long_total,long_average);
    printf("Overall\t\t%d\t\t%d\t\t%d\n\n",overall_counter,overall_total,overall_average);

How can I get the output to align?

like image 511
turnt Avatar asked Oct 26 '25 10:10

turnt


1 Answers

Use the available printf formatter capabilities:

$ cat t.c
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    printf("%-12s%-12d%-12d\n", "a", 2989, 9283019);
    printf("%-12s%-12d%-12d\n", "helloworld", 0, 1828274198);
    exit(0);
}

$ gcc -Wall t.c
$ ./a.out 
a           2989        9283019     
helloworld  0           1828274198  

As you can see, it even work with strings, so you can align your fields this way.

like image 53
fge Avatar answered Oct 28 '25 23:10

fge



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!