#include int main ( int iArgC, char * apsqArgV[] ) { printf ( "Hello, world! This is cygwqin speaking.\n" ); { char szMsg[] = "Not so!"; printf ( "Now inside scope, msg is %s.\n", szMsg ); } return ( 0 ); // Success is zero in Windows. } #### void FooBar ( void ) { int iBeer, iVodka; float fCredit = 20.0; .. /* Code here */ iBeer++; fCredit -= 2.50; .. /* More code */ char *apszVarious[]; /* ILLEGAL in C */ }