C Version Detection

#include <stdio.h>
int main() {

    printf("%lld", __STDC_VERSION__);

    return 0;
}

Last updated