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

Variables not appear in Watch window

Some variables not appear in Local and watch window. This is simple code I wrote and variable 'alpha' didn't appear.

#include <reg167.h>
#include <stdio.h>


void main(void) {

unsigned int alpha;
unsigned int beta;

while(1) {

for(beta=0;beta<255;beta++)
{
alpha=beta;
}

}

}



Can you please any one help me

0