Skip to content

Instantly share code, notes, and snippets.

@htfy96
Created March 2, 2016 12:43
Show Gist options
  • Save htfy96/c12b9422dfd42cf8fd72 to your computer and use it in GitHub Desktop.
Save htfy96/c12b9422dfd42cf8fd72 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void)
{
#ifndef __STDC__
printf("this compiler doesn't conform to C standard");
return 1;
#else
return 0;
#endif
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment