Browse - programming tips - where is sntprintf definedDate: 2011apr12 Platform: Windows Language: C/C++ Q. Where is _sntprintf(...) defined? A. In tchar.h So do: #include <tchar.h> // For _sntprintf ... char buf[100]; _sntprintf(buf, sizeof(buf), _T("%d.%d.%d.%d"), 1, 2, 3, 4);
Add a commentSign in to add a comment | Advertisements:
|