School Assignment? Project Due Tomorrow? Chat LIVE With A Programming Expert!
Welcome to Dream.In.Code
Become an Expert!

Join 307,213 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,565 people online right now. Registration is fast and FREE... Join Now!



's Contributions
Below are the tutorials, code snippets, and resources has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
Intro to allegro. in C++ Tutorials (Last Comment: rbmj, Views: 2,510)
Batch Tutorial Part 1 in Windows Tutorials (Last Comment: rbmj, Views: 6,264)
MySQL Tutorial Part 1: Design in Database Tutorials (Last Comment: rbmj, Views: 3,679)
Code Snippets
Submitted: June 14, 2008        Views: 626
Quote from skyhawk133: "On the white board, write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz"." I don't have a white board, but this works too. Took me five minutes, works well to my knowledge
Submitted: June 19, 2008        Views: 412
A simple implementation of a few useful functions I have made. For beginner purposes I have built off of the basic tutorial at http://cppgameprogramming.com/ though it should be cgameprogramming, since allegro is a C based lib (I'm pretty sure).
Charfinder in C++ by rbmj
Submitted: May 5, 2008        Views: 283
Finds the positions of a given character in an imputted string without using any precompiled functions except cin.getline.
Pig Latin in C++ by rbmj
Submitted: June 4, 2008        Views: 402
Pig Latin one-way(ENG-->PIG) translator. Will be edited for PIG-->ENG soon!
Submitted: May 22, 2008        Views: 1004
This program outputs a given number of terms in the fibinocci sequence in very little code using a for loop.
Submitted: May 29, 2008        Views: 616
The main demonstration here is c-style string manipulation in c++. This code snippet is unique, however, in that it asks for user input (which most other snippets i have seen don't do) and manipulates that value.