This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

important bug

void main ( void );
{
 /************************************
 *                                   *
 *          Define a variable i      *
 *                                   *
 ************************************/

 unsigned int i;

 /************************************
 *                                   *
 *          Start of loop            *
 *                                   *
 ************************************/

  for ( i = 10 ; i > = 0 ; i = i - 1 )

  {

 /************************************
 *                                   *
 *          Add one to i             *
 *                                   *
 ************************************/

    i=i+1;

  }

  what is wrong ??????????

0