The Twelfth of Never

Started by Robert, October 02, 2021, 01:32:53 AM

Previous topic - Next topic

Robert



#include <stdio.h>

int main(){
    printf("%ld", __POCC_STDC_VERSION__);
}



Output:
202912

frankie

Quote from: Robert on October 02, 2021, 01:32:53 AM


#include <stdio.h>

int main(){
    printf("%ld", __POCC_STDC_VERSION__);
}



Output:
202912
Always keep an eye toward future...  ;)
"It is better to be hated for what you are than to be loved for what you are not." - Andre Gide

Pelle

The old tradition is to have the most recent standard C version being the default in POCC. Right now you get C2X which is unfinished/experimental, so perhaps a bit questionable. The C2X standard is supposed to be finished in 2023 (we'll see about that). Whenever it's finished it will get a proper date. Right now all I have is a fake date. Any date. You can always use the /std option to choose something better than the C2X standard.
/Pelle