void generateTableFloat(char *buf, int rows, int cols, const char *title, const char *headings[], float data[rows][cols])
Generates a formatted table with floating-point data.
Definition: print_tables.c:42
void generateTableInt(char *buf, int rows, int cols, const char *title, const char *headings[], int data[rows][cols])
Generates a formatted table with integer data.
Definition: print_tables.c:5