
please wait
by murva
Display using void
|
I have the following code, I need to display a message on screen, using a function on a class: Class A . . void getname1() { cout<<getname(); } ... |
Apr 11, 2009 at 5:35pm
[8 replies] Last: This is the kind of thing you should do: #include <iostream> #inc... (by closed account z05DSL3A)
|
by u2slo50
Gauss-Jordan
|
Hello all, I am trying to design a program that will use gauss-jordan elimination to solve up to 50 simultaneous equations for a final project in my first c++ c... |
Apr 11, 2009 at 4:46pm
[1 reply] : http://www.cplusplus.com/forum/articles/7459/ (by Gumbercules)
|
by Verathis
Creating Dice Roll Win32 App
|
So, I'm sure this has been done to death, but I'm doing a Win32 Console Application that will let the user enter the number of sides on their dice. It then roll... |
Apr 11, 2009 at 3:58pm
[6 replies] Last: Ah hah! That's what it was. Thanks, Gumbercules. Here is my finished c... (by Verathis)
|
by vexstorm
Using pointers
|
first off, i looked at alot of posts with pointer information, none of which i saw to help. Here is what i have i have a file mp4.h that contains class MPC... |
Apr 11, 2009 at 3:00pm
[11 replies] Last: I tried deleting the .gch files... i still get the same error... undef... (by vexstorm)
|
by hatesymphony
Displaying outputs
|
Hello, I have a txt file as an input which have 300 lines information and after some processes like sorting, calculating, I need to display these lines. I ne... |
Apr 11, 2009 at 2:48pm
[3 replies] Last: You will need to use the Win32 Console Functions http://www.google.... (by Duthomhas)
|
by omk
Microsoft C++ exception: std::bad_alloc at memory location 0x0019f3e0..
|
Im getting a error that Im having a hard time finding out whats going on with a crash here and Im hoping you guys could have helped me out. The crash seems e... |
Apr 11, 2009 at 11:54am
[1 reply] : nvm, found the error myself :) Just some sloppy work from myself. (by omk)
|
by kenneth196
How to translate numbers into words?
|
I have to write a program using a class to where, if a user puts in a number, such as 5678, the program will output "Five thousand six hundred seventy eight". ... |
Apr 11, 2009 at 9:29am
[1 reply] : Having the number 5678, you can convert to "5678" ( http://www.cpluspl... (by Bazzy)
|
by haco
html-related inquiries ...
|
i understand that this is a C++ website, but i need help with some html stuff. i think maybe someone here can guide me to the right place, or even just answer m... |
Apr 11, 2009 at 4:38am
[5 replies] Last: you know what, that link actually looks like a great place to start. i... (by haco)
|
User input to a txt file |
Hello, this is my first post here at cplusplus. I started learning c++ yesterday and I can't seem to figure out how to write user input to a text file. The pro... |
Apr 11, 2009 at 1:10am
[11 replies] Last: Okay, thanks alot! (by Mashed Pwntato)
|
by badboizEnt
LOGIN
|
please i was wondering if anyone could help me with my code, i feel its kinda too long and a good program should be as brief as possible... please would be very... |
Apr 11, 2009 at 1:06am
[3 replies] Last: Well that go to its just not right way to get out in C++ (more of C) a... (by PSPMAN90)
|
by ryman
trouble with pointers
|
I have to change this call by reference into a call by address, how would i do that? void calcstat (double average , int size, double &a, double &b, double ... |
Apr 10, 2009 at 11:56pm
[1 reply] : use * instead of & in the parameter, and wherever the variable is used... (by Gumbercules)
|
by mgm2010
Free C++ IDE
|
Any suggestion for a good free IDE for C++ ?? |
Apr 10, 2009 at 11:55pm
[16 replies] Last: MingGW Developer Studio its quite simple and 90 Style looking... I ... (by PSPMAN90)
|
by ROFL A PIGGY
Variables
|
Hey I've been watching this forum for a while and finally decided to stop being lazy and start learning how to program. Thanks in advance for the help :) My ... |
Apr 10, 2009 at 10:35pm
[2 replies] Last: Thanks Bazzy. (by ROFL A PIGGY)
|
by Warrior2089
Error with Microsoft Visual Studio???
|
\Debug\Hour 05.exe.intermediate.manifest : general error c1010070: Failed to load and parse the manifest. The system cannot find the file specified. Just d... |
Apr 10, 2009 at 10:18pm
[6 replies] Last: That's what I thought it'd be, Grey. However I got on it this morning ... (by Warrior2089)
|
by zoemayne
from java to c++ constructors...
|
im trying to read some C++ code but i dont understand the constructor can someone please explain what the ampersand is doing(i know its not the address operator... |
Apr 10, 2009 at 5:34pm
[13 replies] Last: Thank for the good insight guys. I have never even thought of doing th... (by LacViet)
|
by Beginner101
A small problem here
|
#include <iostream> using namespace std; class Stack { public: Stack() { sp = 0; } void operator<<(int); int operator>>(string); private: int sp; ... |
Apr 10, 2009 at 3:59pm
[1 reply] : as an operator that returns an int, >> must return and int. You could ... (by Gumbercules)
|
by zydeoN
Problem with array and loop
|
I wanted to make a program to output the values inputed by the user, storing them in an array. If the user inputed a negative number the program would close.How... |
Apr 10, 2009 at 3:49pm
[15 replies] Last: a character left in the stream. cin.get only waits for user input if t... (by Gumbercules)
|
by budzbox
Problems with Class Constructors
|
I cannot seem to figure out what I am doing wrong here. I have a lot more code I am trying to get working, but I get the same errors with this simple code, so I... |
Apr 10, 2009 at 3:30pm
[3 replies] Last: Yes, that would work. (by firedraco)
|
by token
Converting Code to Function [difficulty]
|
I've been trying to convert some code into a function. The function would receive the user input stored in a pointer to char array allocated in dynamic memory, ... |
Apr 10, 2009 at 6:27am
[10 replies] Last: char ** words; is a pointer to pointer or a double dimensional array. ... (by writetonsharma)
|
by Shakazahn
Beginner looking for some info
|
Hello, I'm sorta new to C++, I've played around with C# and Java (as hobby, nothing professional) and thought I would give it a try for some projects. I kno... |
Apr 10, 2009 at 6:10am
[4 replies] Last: windows programming starts with win32 and move to mfc, com, atl etc et... (by writetonsharma)
|