8 lines
211 B
C
8 lines
211 B
C
#include <stdc-predef.h>
|
|
#include <stdio.h>
|
|
int main() {
|
|
// printf("%s", __STDC_IEC_559__);
|
|
// printf("%s", __STDC_IEC_559_COMPLEX__);
|
|
printf("%d\n", __STDC_VERSION__);
|
|
printf("%d", __STDC_HOSTED__);
|
|
};
|