Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /s/bach/a/class/cs000/public_html/pmwiki/cookbook/date.php on line 68

Warning: String offset cast occurred in /s/bach/a/class/cs000/public_html/pmwiki/cookbook/steganography.php on line 9

Deprecated: Implicit conversion from float 1260.2884615384614 to int loses precision in /s/bach/a/class/cs000/public_html/pmwiki/cookbook/steganography.php on line 9
Jack Applin | Code / CompilerDetection

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;
        }