Forum: C++ Mar 3rd, 2009 |
| Replies: 1 Views: 430 Hello there!
Is it possible to detect the Windows version (or at least detect if it's XP or Vista) from a C++ code?
I'm working on an ActionScript/C++ solution and, right now, am detecting... |
Forum: C++ Apr 20th, 2008 |
| Replies: 3 Views: 2,321 You cannot concatenate strings this way in C/C++.
Use strcat.
Like strcat(str1, str2);
Hope this helps. |