// Clause: 7.21.6.1 (printf) — If a conversion specification is invalid, the behavior is undefined.
#include <stdio.h>
int main(void){
    printf("%r\n", 42); // UB: %r not defined
    return 0;
}
