Omar Vlogs
0
Q:

c value set to zero __memmove_avx_unaligned_erms

//The issue is that you probably have an uninitialized variable.
//Instead of:
char *fnam;
int nn = sprintf(fnam,"%s/%s",cwd,filnam);
//Try:
char fnam[500];
int nn = sprintf(fnam,"%s/%s",cwd,filnam);
0

New to Communities?

Join the community