Forum: C++ 16 Days Ago |
| Replies: 7 Views: 30,372 Usually the compiler error will say what identifier is undeclared and indicate where it is first used.
If you have not declared it earlier (e.g int i) then you'll need to add the appropriate... |
Forum: C Jul 11th, 2006 |
| Replies: 2 Views: 2,035 For a discussion of detecting cycles in linked lists, see http://ostermiller.org/find_loop_singly_linked_list.html
-bobd- |
Forum: C++ Jun 15th, 2004 |
| Replies: 7 Views: 30,372 A little further searching for _WIN32_WINNT in the VS7 help index brings the following.
[Begin help file text ]
Certain functions that depend on a particular version of Windows are declared using... |
Forum: C++ Jun 13th, 2004 |
| Replies: 7 Views: 30,372 I took a quick look at the code then tried to compile under VC7.1. It failed there too. I right clicked in the IDE to find the definition of INPUT which took me to WINUSER.H. Everything looked ok... |