I tried to debug Macro variable but i cannot. I use Dev c++
#include<stdio.h>
#define TIME 5
int main()
{
int i=TIME;
printf("%d",i);
}
when I run it, of course it gives correct result.
but when I debug, it reports "TIME = not found in current context"