// nono.c -- no!
/* Incidentally this program runs properly when compiled 
   with GCC 4.1.2 */
#include <stdio.h>

int main(void)
{
	char side_s[] = "Side A";
	char dont[] = {'W', 'O', 'W', '!'};
	char side_b[] = "Side B";
	
	/* dont is not a string */
	puts(dont);
	
	return 0;
}
