by maniacle
error at main function
|
Here is the code that I am getting the error at: int main() { int const N = 10; int a, b; int fl... |
Mar 9, 2013 at 12:09am
[2 replies] Last: It could be. And you can put int const, the order does not matter. (by firedraco)
|
by eman2013
Compsci II HW #2
|
My problem is that I need to run the program 5 times but it wont repeat even though i have a for loo... |
Mar 8, 2013 at 11:51pm
[no replies]
|
by eman2013
Compsci II HW #1
|
Problem: The queen on the ACSL chess board is the most versatile piece. It can move at most N cells... |
Mar 8, 2013 at 11:39pm
[no replies]
|
for loops help please! |
This is the problem I am trying to figure out: A student wants to be able to figure out their av... |
Mar 8, 2013 at 11:32pm
[4 replies] Last: Awesome thank you very much (by AdmiralAxtell)
|
by hitmanben2
typeid of enumerator
|
hello i am reading about enumeration and i was trying this example using "Visual C++ 2012": enum S... |
Mar 8, 2013 at 10:53pm
[3 replies] Last: I wonder what would happen if you did this: enum Suit : char {Clubs,... (by Stewbond)
|
by dutchman
Change content/line of text in a File
|
Hello, I want to change a line of text/content in a text file. There are many options, like copy the... |
Mar 8, 2013 at 10:44pm
[1 reply] : typedef struct { char fname['\n']; char insertion['\n... (by cire)
|
by bigyankeefan
Need help with vectors and arrays
|
I am in need of assistance with a homework assignment where I have to write a program that prints ou... |
Mar 8, 2013 at 10:28pm
[1 reply] : You didn't explain what your problem is. Not too many people are goin... (by Stewbond)
|
by abry
CHAR* STACK/QUEUE PROBLEM
|
In my code, I cannot seem to push other string values other than the last value I have input. I know... |
Mar 8, 2013 at 10:23pm
[1 reply] : A pointer holds a memory address. You are pushing the same memory add... (by cire)
|
by EeAA
exhaustive search
|
Can someone give me a general idea on how to setup pseudo code for an exhaustive search algorithm t... |
Mar 8, 2013 at 9:26pm
[1 reply] : > I tend to think more like a human where I need to think as a compute... (by ne555)
|
by ADTR2012
First Battleship Program
|
Hey guys I just wanted to share my first battleship program. It is pretty basic but I am new to c++.... |
Mar 8, 2013 at 9:16pm
[no replies]
|
Code errors |
"fraction.h" #ifndef FRACTION_H #define FRACTION_H #include <QString> class Fraction { public: ... |
Mar 8, 2013 at 9:03pm
[4 replies] Last: Thanks for the initial help, will give it a shot. Appreciate the poin... (by Anonymous Anonymous)
|
by AndyM39
Help with this code? (Complete Beginner)
|
Hello all. I am new to programming (just started a class in college), and I am having a problem gett... |
Mar 8, 2013 at 8:39pm
[4 replies] Last: As L B pointed out, the function doesn't need C as a parameter. The w... (by Chervil)
|
by Bolong Yu
Loops
|
How would I create a program that would find the largest and the smallest integer in a series? |
Mar 8, 2013 at 8:39pm
[2 replies] Last: or more simply: float MaxRange(float arr , int size) { float high... (by Stewbond)
|
by iswadibule
how to make triangle with number?
|
i Write a program to print a triangle, star (*) is change with number from the largest possible nu... |
Mar 8, 2013 at 8:19pm
[no replies]
|
Can someone explain the difference between pass by reference and pass by value? |
Pass By Reference VS Pass By Value in C++ can we use both in return type functions ex int and voi... |
Mar 8, 2013 at 8:00pm
[4 replies] Last: In general, I stick with return over reference, but it depends on what... (by Stewbond)
|
Help starting this program? |
cc |
Mar 8, 2013 at 7:45pm
[1 reply] : cplusplus.com/doc/tutorial (by chipp)
|
by oobilator
Baseball Roster Help?
|
Hey all, I'm trying to make a program to have a baseball roster which can be edited and adjusted bas... |
Mar 8, 2013 at 7:31pm
[3 replies] Last: Ah, fixed it. Just some stuff needed to be moved around. Thanks. (by oobilator)
|
by letttty
Help with calling header files in C++
|
This is a program that I have already written. What I need to do is modify my switch statement so it... |
Mar 8, 2013 at 6:39pm
[3 replies] Last: Example: switch (decision) { case 1: cas... (by Chervil)
|
by firstTym
function not showing any input
|
I need to create Three classes , namely: 1. Motorbikes 2. Vans 3. Trucks all of them have the ... |
Mar 8, 2013 at 6:24pm
[2 replies] Last: in my main program i call the toString() using cout. Thanx for your he... (by firstTym)
|
by Olysold
Erasing string values, string subscript out of range.
|
Hey people. I don't quite understand how I'm getting the error, Expression: string subcript out o... |
Mar 8, 2013 at 6:13pm
[7 replies] Last: Thanks Chervil and Cubbi, it's working fine now =). I included this as... (by Olysold)
|