
please wait
by abprogram45
Linked list
|
How to make a simple linked list, with words, not numbers. I need to make linked list with 6 words, i don't know how to make linked words list. I know h... |
May 1, 2011 at 3:21pm
[1 reply] : Use list<string> instead of list<int>. (by Athar)
|
by Raoul
Parameters in C++ OOP
|
Hello tehre, I am trying to make a class but i can't use some parameters in my function #include <iostream> using namespace std; class Test { ... |
May 1, 2011 at 1:55pm
[2 replies] Last: Well, in your function changeName you get a character as a parameter... (by Zeillinger)
|
Input file stream parsing |
Hi all. I have an assignment for school and one of the requirements is to read in from a file of a specific format and do operations on a data structure based ... |
May 1, 2011 at 11:48am
[2 replies] Last: You should also #include<cctype> To allow you to use the function ... (by Mohamed Fouad)
|
by pimbleton
ofstream is not creating a file
|
Hello c++'ers, This is hopefully quite a simple problem but it is driving me a bit nutty! Here is the code in question: bool new_database=true; ... |
May 1, 2011 at 10:54am
[4 replies] Last: If you've made changes to your code, it would be helpful if you update... (by closed account zb0S216C)
|
by siraulo23
Read a file then use for another function
|
Hello Im trying to create a separate function that reads a file for everything i will need. int text(double array1 , double array2 , char readthefile ) { do... |
May 1, 2011 at 9:11am
[2 replies] Last: Thanks, for the idea I actually figured it out before you posted Than... (by siraulo23)
|
by akilguo
Help!!!Troubles in using C functions to input and output...
|
I wrote a c function to extract useful information of a txt file into another txt file using fprintf and fscanf, but i can't get it work, i don't know what's wr... |
May 1, 2011 at 8:32am
[7 replies] Last: Well, I know the problem. In the modified version, i define the str a ... (by akilguo)
|
by ccole101187
Help with Big-O requriments
|
Can anybody direct me to where to begin? Develop three functions that must satisfy the Big-O requirements as shown below (1) Develop a function that uses... |
May 1, 2011 at 7:47am
[2 replies] Last: I have the same assigment for class. Don't worry about Big O. T... (by hotdogs113)
|
by Shay9999
How To: Windowed Programs?
|
Heya, I have a quick Que about the windowed programs. I don't mean for anyone to spell it out for me (Although I would appreciate it *wink*), but just the main ... |
May 1, 2011 at 7:12am
[3 replies] Last: check this http://www.qt.nokia.com you will like your UI apps developm... (by Mazd)
|
by boolean
More Tutorials
|
Hello, I was wondering if anyone knew any good tutorials I should read after the ones one this website. I am interested in programing games but i do not thin... |
May 1, 2011 at 6:38am
[6 replies] Last: Qt by NOKIA (www.qt.nokia.com) is my choice. (by Mazd)
|
by tejashs
integer input help
|
hello!! i have a doubt about getting an integer input from the console #include<iostream> using namespace std; int main() { int in; while(1) ... |
May 1, 2011 at 6:01am
[1 reply] : http://cplusplus.com/forum/articles/6046/ (by closed account 3hM2Nwbp)
|
Error LNK1120 only on this computer! |
I'm making a program for my university coursework which is to make a 3 question, multiple choice quiz. I emailed my half finished code to myself and when I load... |
May 1, 2011 at 12:12am
[9 replies] Last: what do you want to do there? std::string questions ; //if( questions... (by ne555)
|
by gongzhen
Doubled Linked List with Template
|
Hi Friends. Have a question about the template. The compiler report error about: error: variable or field 'insert' declared void| error: 'TYPE' was not decla... |
May 1, 2011 at 12:00am
[2 replies] Last: The third part: #ifndef Node_H_INCLUDED #define Node_H_INCLUDED #in... (by gongzhen)
|