// This program demonstrates the compiler error from an // undeclared variable. int main () { a = 7; return(0); }