User profile: blueberry

User info
User name:blueberry
Name:Dong Shi
Location:Toronto, Canada
Bio:Goes by Blueberry and Blueberryteeth xD
History
Joined:
Number of posts:130
Latest posts:

What you can do in c++ that c# can't?
I think the only thing is that it's much for flexible. Imagine trying to write a driver or something...

Extracting data from txt file
How I would do this: Read it in, in one string, using the getline(). Then take out the first 20 let...

Start a program from within a program.
I would start off with removing the [code]#include <ctime>[/code]. It's essentially the same thing a...

Help with making a Roulette game
[code]strcpy_s(name, strlen(f) + 1, f)[/code] In c++ (or C in this case), strings are stored in thi...

Start a program from within a program.
Instead of using a timer, you could try checking to see if a certain amount of time has elapsed. [c...