/* * declare1.c - once you initialize one variable, just declaring a variable is supposed to be illegal. * However, this is not illegal in gcc 4.1.1 */ #include int main(void) { int month = 6; int day, year; day = 23; year = 1871; printf("He was born on %d/%d/%d.\n", month, day, year); return 0; }