Code











edit SideBar

(:run:)

        #include <stdio.h>

        int main() {
        	int eight=8;

        	if (sizeof('a')==1)
        		printf("Compiled as C++\n");
        	else if (eight != 8//* hi there */4
        		 )
        		printf("C89\n");
        	else
        		printf("C99 or gcc without -ansi\n");

        	return 0;
        }