Monday, June 2, 2008

How developers fix their bug -- funny forwarded email.

Forwarding one funny email from yahoo group ~ enjoy testing - Nimesh

##########################################################

#include <stdio.h>


#define LAST 10

int main()
{
int i, sum = 0;





for ( i = 1; i < = LAST; i++ )
{
sum += i;
}

/*-for-*/
printf("sum = %d\n", sum);
return 0;
}


##########################################################

And the developer fixes it this way

##########################################################


#include stdio.h;
#define LAST 10

int main()
{
int i, sum = 0;


/*




*/


for ( i = 1; i < = LAST; i++ )
{
sum += i;
}

/*-for-*/
printf("sum = %d\n", sum);
return 0;
}



##########################################################


No comments:

Post a Comment

Popular Posts