在网找到的例子
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
void main(void)
{
..........................
srand((unsigned)time(NULL));
fRandValue = rand();
}
仿真后,点运行报错
Break at address "0x3ff599" with no debug information available, or outside of program code.
这是什么原因,有什么办法处理?