Expand|Select|Wrap|Line Numbers
- int main(int argc, char* argv[])
- {
- char buf[64] = {};
- _snprintf(buf, sizeof(buf) - 1, argv[1]);
- return printf("%s\n", buf);
- }
i failed to understand for the reasons why as _snprintf is defined uder the lib stdio.h but it seems the lib doesn't have a definition of it.
Do i have to update the lib or............please help me out