#include<stdio.h>
#include<string.h>
int main(void)
{
int f;
char duma[] = "asd char";
f = strlen(duma);
}
So when I run it in debugger and in "watch" table type strlen(data) its getting back a message like word like strlen() does not exist or something like that, the mean is that strlen does not exist, however in locals f = strlen(duma) i mean its making the calculations and show me the number of chars in the array. In Immediate its just the same like in watch strlen does not exist ...
So any suggestions how can i fix it ???
Thanks in advance