Because I know that
char array[STRING_ELEMENTS + 1][MAX_STRING_LENGTH + 1];
/*just for the first element*/
array[0] == ("this number: %d, and that number: %d\n", a, b);
probably makes me look disgusting. I would have no clue how else to do this though.
snprintfwhich you must use for a safe program, will truncate you string.