User profile: discofire

User info
User name:discofire
Name:Ryan Bazinet
Bio:I am a software engineer for a large corporation and work with a variety of languages. The first "programming language" I was ever exposed to was Logo, but the first one I really played with to any extent was Basic probably 25+ years ago. I started my actual CS education learning C++ 18 years ago, and have a Bachelors of Science with a double major in Computer Science and Math, and a Masters of Science in Computer Science.
Statistical data
Gender:Male
Occupation:Engineer
Skills:C
PHP
C++
Perl
Java
Javascript
Scheme
TCL
History
Joined:
Number of posts:64
Latest posts:

Counting words in an array
What about the case where a string has multiple spaces in a row? People sometimes put double spaces ...

Stack<int> and Stack<string> problem solving
Sorry for taking so long to get back to you. Since you can only have stacks as data structures, you ...

Stack<int> and Stack<string> problem solving
You could maintain another stack of integers, or array of integers that just stores 0's and 1's. The...

Why doesn't this code print?
Did you try my suggestion? I suspect the scope of your product variables is expiring before you call...

Why doesn't this code print?
I suspect it has to do with the way you are creating/adding new products on line 142-143. You may wa...