User: KurtJD

  • Public profile

User profile: KurtJD

User info
User name:KurtJD
Name:Kurtis Dinelle
Location:Yuma, AZ
Bio:I'm an active duty Marine and spend almost all of my free time programming and increasing my knowledge of computer science in general.
History
Joined:
Number of posts:13
Latest posts:

Making a program that writes to a file
Replace ios::out with ios::app, which will append to the end of the file rather than overwrite it.

Game of Life
The problem is you are modifying the grid as you check each cell. The grid you look at to determine ...

When to use pointers?
Pointers are necessary for dynamic memory allocation. You may need to dynamically allocate memory if...

What are the differences
You should research dynamic memory allocation and stack vs heap. Very interesting topics and by doin...

What are the differences
The difference is in how memory is being allocated. The examples making use of the new keyword are d...

This user does not accept Private Messages