
please wait
by afdelgado7
C1075 Error
|
I'm trying to compile a CHUMP program and keep getting this error message 1>CHUMP_Quality_Control_Program.cpp(22): fatal error C1075: end of file found befor... |
Mar 9, 2013 at 7:39am
[1 reply] : YOu have 9 opening brackets and 8 closing. Figure the rest. (by MiiNiPaa)
|
by tummytums
Array help
|
I am generating random characters (A-Z) and I am trying to figure out how to count the amount of times each character appears. I believe what I need to do is pu... |
Mar 9, 2013 at 7:28am
[1 reply] : const int NbLetters = 'Z' - 'A' + 1; // It'll be 26 int CharCount =... (by Stewbond)
|
by thephantom
file stream errors
|
For this portion of my code: void openFiles(ifstream& fileIn, ofstream& fileOut, string cityName) { string dataFile; cout << "Please enter the pathway... |
Mar 9, 2013 at 6:30am
[9 replies] Last: The code you posted should work perfectly fine and it should not be sk... (by closed account 3qX21hU5)
|
by sirjames2004
Fun with Structs
|
Hey guys it's me again, with another fun assignment from my instructor. Although this time, I can actually make my own functions. I can change the prototypes to... |
Mar 9, 2013 at 4:47am
[6 replies] Last: That seemed to have done the trick. Thank you much, and a big thanks t... (by sirjames2004)
|
by Austin J
OpenGL Download/Setup?
|
I have the latest drivers for my video card. Now I'm trying to find a decent tutorial on how to set it up with code:blocks or Visual Studio 2010. However all th... |
Mar 9, 2013 at 4:11am
[no replies]
|
by opProgrammer
drawRectangle() ISSUE!
|
Hello, before I explain my problem I just wanted to say that I am quiet new to the programming. I'll be quick and just describe the problem really briefly, I... |
Mar 9, 2013 at 3:59am
[3 replies] Last: I would really appreciate any help or just a point into right directio... (by opProgrammer)
|
by Jessica7695
Write indefinite loop inside of input and switch functions?
|
I am a beginner student in javascript and html. I am supposed to use/write an indefinite loop allowing the user to keep inputting new values. inside this loop,... |
Mar 9, 2013 at 3:38am
[2 replies] Last: Like I said, I'm strictly a beginner, I was just relaying my instructo... (by Jessica7695)
|
by The Wizard
Random Variable
|
I'm new to programming in C++ and I'm trying to figure out how to choose a random variable out of a selection of given variables. There were other posts I found... |
Mar 9, 2013 at 3:21am
[4 replies] Last: It works now. Thanks. (by The Wizard)
|
array programs |
Need to write two programs and pretty lost. Been home sick for the past week due to eating seafood (stomach flu) missed lecture on arrays, and the book isn't mu... |
Mar 9, 2013 at 3:15am
[3 replies] Last: I tried the second code, but I'm not sure if this is right, I keep get... (by closed account oj87ko23)
|
Trouble with inputing a data file into a class |
I'm having a hard time doing this. I am supposed to be getting data from a data file and inputting it into a class named Person. I haven't been able to get this... |
Mar 9, 2013 at 3:14am
[8 replies] Last: Are you unfamiliar with the term "indentation?" The error it shows w... (by cire)
|
by max utley
Help me swap values using pointers
|
So i'm reading my c++ book and it describes how to swap two values using pointers, it gives an example int temp = *p1; *p1 = *p2; *p2 = temp; I just hav... |
Mar 9, 2013 at 3:00am
[2 replies] Last: Ok thank you that it explains it. (by max utley)
|
by klaus2013
swap
|
Hello.. what is the pb here #include <iostream> using namespace std; void swap(int a, int b) { int t; t=a; a=b; b=t; cout << "x ="<< a <<" & ... |
Mar 9, 2013 at 2:58am
[6 replies] Last: No, it can't. void denotes that the function won't return a value.... (by MrHutch)
|
by Christa912
Problem creating a linked list?
|
So the actual text file that will be used with the program is a lot larger but for now I'm using a small 12 line .txt file. The program is supposed to be creati... |
Mar 9, 2013 at 2:29am
[no replies]
|
by Julioboltio
Problem with Dev-c++ for windows 8
|
I have a windows 8 operating system and i also use Dev c++ as my compiler, but last time i tried to compile this algorithm it didnt output anything in the scree... |
Mar 9, 2013 at 2:17am
[no replies]
|
by ebonygeek45
private string setters and getters
|
In an effort to understand setter and getter better I did a tutorial on youtube. I don't think I missed anything but my code is not working and I thought I di... |
Mar 9, 2013 at 2:02am
[18 replies] Last: Thank you Anon!! I actually searched around and found little informat... (by Lynx876)
|
by blakeb
String error?
|
Hi, I have another issue with a sample excercise. Here is my code: string s; double op1, op2, sum, diff, product, div; sum = op1 + op2; diff = op1... |
Mar 9, 2013 at 1:35am
[2 replies] Last: I would change your string variable to a char. I believe that a statem... (by Yanson)
|
by Atokensis
Requesting a review
|
Hello everyone, This is my second year of learning c++ in college. To be honest, all I would like is a review of this code. My professor prompted... |
Mar 9, 2013 at 1:33am
[2 replies] Last: Thank you! That makes perfect sense. All I was doing before was increa... (by Atokensis)
|
by Retrokin
SDL Surface
|
Why do you need to SDL_Surface* Surface , why can't you just use SDL_Surface . Isn't * a pointer? I just don't understand why you need the pointer and you c... |
Mar 9, 2013 at 1:22am
[3 replies] Last: Indeed it is much to do with the way things are passed around. Note S... (by closed account 3CXz8vqX)
|
by frankowzki
private objects
|
Hello!, im trying to create a matrix of chars, but i get an error of "char object::mat ’ is private". i've 2 files one is "a.h" and the other "b.cpp" ... |
Mar 9, 2013 at 1:01am
[6 replies] Last: Thankyou, i fixed didnt realise that i was compiling with gcc instead ... (by frankowzki)
|