Hello:
I wrote a very simple short code on my project.
/* * main.c */ int main(void) {
int a=3,b=4,sum=0;
sum=a+b;
printf("sum=%d",sum);
return 0; }
I selected "Build All". But when I clicked debugging and the triangle, I could not see my result. Instead, the CCS showed:
"Can't find a source file at "/tmp/TI_MKLIBoTdwIk/SRC/exit.c"
Locate the file or edit the source lookup path to include its location."
I cannot see the value of the sum.
What's the meaning of this?
thanks