Answers for "c value set to zero __memmove_avx_unaligned_erms"

C
0

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);
Posted by: Guest on June-19-2020

Code answers related to "C"

Browse Popular Code Answers by Language