User profile: fun2code

User info
User name:fun2code
Name:Derek Slagle
Location:Wichita, KS
Bio:While earning a degree in Physics I had to take a couple of intro. programming classes in PASCAL(as requirements). These classes lit an interest in programming I would have otherwise never found!! I have been learning on my own and writing programs (in c++) for fun off and on ever since. Some of the best apps I have written are: 1) A user vs. PC version of Scrabble 2) A modified version of minesweeper (I'm a minesweeper nut) 3) A full featured 2D space shooter animated game which is a current ongoing project. All have supplied me with lots of learning. I often bite off way more than I can chew but so far I have always completed my chosen projects anyways. My goals ahead are to fill in the gaps in my use of GDI and API functions in my win32 projects (that is, to learn these skills more formally so I know what I'm doing solidly), move up to use of DirectX (I have some simple working apps now) and learning to use a more modern IDE (I have done everything using MS Visual C++ 6.0 so far). This site looks fun!
History
Joined:
Number of posts:1796
Latest posts:

Selection sort for 2-Dimensional array
Memory is contiguous across all elements so the array may be treated as 1-dimensional, which helios ...

Deleting a Node Using Recursion
One function for insertion anywhere? Before or after head? This follows the same indexing suggested ...

Deleting a Node Using Recursion
You're welcome. I'm glad my posts made sense. About treating head vs. some link in the list differen...

Problem with printing
[quote] output is only: somet[/quote] That makes sense. The number of while loop iterations = sizeo...

Deleting a Node Using Recursion
Removal of the head node works the same way as any other, except that you're working with a pointer ...