During one of my lectures, my professor opened the wrong coding example (it seemed to be for a more advanced class) and before he switched to correct one, I caught a glimpse of a %j
format specifier.
The small glimpse of code looked sorta like any other printf()
statement:
printf("%ju\n", numbers[i]);
I've tried looking for an answer on duckduckgo and the stackoverflow search engine but for some reason I can't find any mention of it.
For example: https://www.tutorialspoint.com/format-specifiers-in-c No mention of %j
whatsoever.
Anyone knows why this might be the case?