
please wait
by Bluebird89
Help with Pointers and Arrays
|
Hi, I am new to C programming and currently using Microsoft Visual Studio 2008 to write C++ programs. Im having trouble with an assignment that requires the add... |
Apr 24, 2013 at 6:31pm
[4 replies] Last: Thanks for your help, much appreciated. (by Bluebird89)
|
by ehab93
Need a little help here ...
|
I'm working on a program That sounds like a Calculator You give him a function and he will graph,it but there was a problem that if the user chose for example "... |
Apr 24, 2013 at 5:53pm
[9 replies] Last: ...but it is over 800 line! Wow, thanks for my first laugh of the da... (by Computergeek01)
|
by Hillcyd
algarytnm for 2d array in a class
|
I am having troubles trying to figure out a few things in an 2d array inside a class. First thing I am having issues with is how to row operations; int Mu... |
Apr 24, 2013 at 5:30pm
[5 replies] Last: [co//Program ID : MultiArray.h //Written by : A great student #include... (by Hillcyd)
|
Dont know what's wrong |
#include <iostream> #include <iomanip> using namespace std; void get_emp_rec(int &id, double &prate, double &hours) { cout << "Employee ID is:\t"; ... |
Apr 24, 2013 at 5:09pm
[6 replies] Last: Well, presumably you know what size is supposed to represent, becaus... (by MikeyBoy)
|
How to output this file into a new program or code? |
//code ofstream outFile; outFile.open("p4a.dat"); outFile << setw(8) << "90.0"; outFile << setw(8) << "75.0"; outFile << setw(8) << "36" << endl; outFile << e... |
Apr 24, 2013 at 4:55pm
[1 reply] : explain (by SamuelAdams)
|
by cdashdash
Wrong answer in Output. Not calculating.
|
Whenever this program runs, the repeated statements gives off-the-wall numbers. Thanks for any help. There are no errors and it compiles correctly. #ifndef ... |
Apr 24, 2013 at 4:29pm
[7 replies] Last: I guess so, though it seems a bit overkill to me. FWIW, I've just t... (by MikeyBoy)
|
by Angry Food
Help: Output not as nice as I thought
|
Hi. I want it to output like a table or at least nicely arranged but for some reason it didn't output as I expected it to be. How should I fix it and make the ... |
Apr 24, 2013 at 3:53pm
[2 replies] Last: If this is your code, I think you should have been able to figure it o... (by SamuelAdams)
|
by Jijgee
unicode character
|
In mongolian cyrillic, one character has 2-byte size. 'а' - 2 byte, 'б' - 2 byte, 'в' - 2 byte, 'г' - 2 byte, 'д' - 2 byte and so on. In mongoli... |
Apr 24, 2013 at 2:56pm
[14 replies] Last: I solved the problem on windows. #include <iostream> #include <stdi... (by Jijgee)
|
by Dalton
classes and semi-colons giving me troubles
|
Hey guys, I've got some troubles in this code declaring classes and having the program run due to some errors that all have to do with semicolons. I'm really no... |
Apr 24, 2013 at 7:41am
[3 replies] Last: When defining functions outside of the class or namespace scope, you n... (by AdrianH)
|
by madhuj
Create a string with wierd characters in c++
|
i want to create a binary file based on some hex data : Ex Input Hex :54313032202020303030 Out put like :6 |
Apr 24, 2013 at 6:53am
[2 replies] Last: What are you trying to do? Go backwards from a generated hex file to ... (by AdrianH)
|
by AdrianH
Name resolution not working as expected
|
I was trying something ( which is now obsolete due to some new understandings of templates I changed my mind, I still may need something like this to reduce co... |
Apr 24, 2013 at 6:47am
[2 replies] Last: Now consider class A. It is a template class. It knows nothing what d... (by AdrianH)
|
by djibn7
ERRORS
|
The following game has errors and wont run! Help please. /* Guess the computers Number game */ //main #include <iostream> #include <string> #include ... |
Apr 24, 2013 at 5:27am
[2 replies] Last: The following game has errors and wont run! Help please. Instead of ... (by cire)
|
Can I make something similar to this beautiful game using C++? |
I heard that you are only limited to your imagination with C++. If making a game like this is possible, where should I start? I know about tutorials that start ... |
Apr 24, 2013 at 5:23am
[1 reply] : First you will need to learn the basics. Tutorials which makes you do ... (by MiiNiPaa)
|
by Reclaimer78
Main.cpp
|
Ok so I am currently trying to add and subtract two sets of integer arrays. When I run my program, the program does not subtract the numbers from the first set ... |
Apr 24, 2013 at 4:58am
[1 reply] : well we would have to see your subtract function in the SafeArray clas... (by GreyOwl)
|
by xsesx
Programs outputs random numbers in answer. EDIT SOLVED
|
EDIT: SOLVED |
Apr 24, 2013 at 3:50am
[no replies]
|
by ayndrew
design a class that can be used to represent a parabola, any help is greatly appreciated
|
First off thank you for taking out time on even thinking of helping me. So i've been up for way too long and having massive brain farts. The goal of this pro... |
Apr 24, 2013 at 3:18am
[no replies]
|
by djibn7
WONT IDENTIFY ERRORS
|
I am having difficult to identify the errors in this program. Please help. #include "stdafx.h" #include <iostream> using namespace std; int main() ... |
Apr 24, 2013 at 2:04am
[1 reply] : Please use code tags http://www.cplusplus.com/articles/z13hAqkS/ init... (by Yanson)
|
First time with arrays, help |
#include <iostream> #include <iomanip> using namespace std; void get_emp_rec(int &id, double &prate, double &hours) { cout << "Employee ID is:\t"... |
Apr 24, 2013 at 1:18am
[4 replies] Last: no that is not what i intended and i believe i have fixed it (by baketballcourt)
|
by nunks
[ERROR] Class error
|
So i have a c++ file like this login.cpp #include <iostream> #include "login.h" using namespace std; login::login(); { cout<<"banana"; } ... |
Apr 24, 2013 at 1:18am
[8 replies] Last: ok thanks for help ^^ (by nunks)
|
by johnpants
operator= Overloading error
|
I'm attempting to overload the = operator for a class designed to manage arrays of integers (inb4 vectors). But anytime there is an '=' operation in the main fi... |
Apr 24, 2013 at 1:02am
[4 replies] Last: Right, thanks for your help. The instructor for the class wrote the ma... (by johnpants)
|