Name: Anonymous 2010-09-26 10:25
In spirit of the /prog/ challenges I will make my own.
I present to you: THE WEEKLY "IT DOESN'T COMPILE"
The challenge:
This week's challenge:
I present to you: THE WEEKLY "IT DOESN'T COMPILE"
The challenge:
* Assess why the sourcecode doesn't compiles
* Determine what fixes there are for the problem
* Fix the problem with the appropriate patchThis week's challenge:
int main() {
int *ptr = NULL;
if( ptr == NULL )
return 1;
else
return 0;
}