error: ‘memset’ was not declared in this scope
error: ‘strncmp’ was not declared in this scope
I'm going to continually update this look-up table, which will explain what to do when receiving any of these errors:Error | Resolution |
---|---|
error: ‘memset’ was not declared in this scope | Add #include <cstring> |
error: ‘strncmp’ was not declared in this scope |
2 comments:
For "error: 'exit'/'atoi'/'gcvt'... add #include < cstdlib >
(remove the extra spaces inside < >)
And others here :
http://www.cyrius.com/journal/gcc/gcc-4.3-include.html
Thanks for your contribution!
Post a Comment