Ubuntu – `sscanf` for `%%` does not work as expected
Consider the following program: #include <stdio.h> // [Example 5 from C17; Page 238](https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2310.pdf) int main(void) { int n = 0; int i = 0; n = sscanf("foo %bar 42", "foo%%bar%d", &i); printf("n = %dni = %dn", n, i); return 0;…