Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <stdio.h>
int main ( void ) {
#if defined(__cplusplus)
printf( "Compiled with an ANSI-C++ compiler\n" );
#elif defined(__STDC__)
printf( "Compiled with an ANSI-C compiler\n" );
#else
printf( "I don't know what standard your compiler is\n" );
#endif
printf( "Press return\n" );
getchar();
return 0;
}