G
Grand-Master
Consider the following program:
#include <stdio.h>
int main( void )
{
int foo;
return 0;
}
How would I get this program to output an error message stating that the
variable foo was not assigned a value? Is there a special reserved
phrase that I can use in the fashion as EOF or NULL?
Thanks!
-Gordon
#include <stdio.h>
int main( void )
{
int foo;
return 0;
}
How would I get this program to output an error message stating that the
variable foo was not assigned a value? Is there a special reserved
phrase that I can use in the fashion as EOF or NULL?
Thanks!
-Gordon