User profile: eker676

User info
User name:eker676
Statistical data
Skills:C
C++
VB .NET
C#
C#/.NET
A little Java
History
Joined:
Number of posts:427
Latest posts:

console text-editor
I would make a customized stack that allows popping off the front and pushing to the back. Then s...

read substring by reverse
[code]#include <iostream> #include <string> using namespace std; int main() { string str = "...

Fractions Evaluating to 0
[code]return (input - 32) * (5 / 9);[/code] Look here. 5/9 = 0 because its integer division. Same...

just shoot me now
You need to compile the code. Save the code as a .cpp file. If you are using code blocks: - W...

generating random values
Here is something I found after a quick search: [code] double randDouble(double low, double high) ...