
please wait
by newbie2015
Linked List
|
I'm a complete newbie in c++, and I'm trying to prepare for a class for next semester. Any help would be appreciated!!! |
Jul 13, 2015 at 12:40pm
[2 replies] Last: I have this book and it helped me alot. Its not the most advanced read... (by jsonlickliter)
|
by mariuss
Help
|
My code do this ex1 txt1 line 1 txt2 line1 out put line 1 is ok but if I have txt1 line 1 txt2 line 1 line 1 output line1 line1 I need 1 ti... |
Jul 13, 2015 at 12:38pm
[7 replies] Last: I find it txt dhydan ;) (by mariuss)
|
by Adytzu04
!substring[k]
|
Hi! I'm writing a program that records the number of apparitions of a substring in a string. The code is taken from a c++ manual but i do not understand exactly... |
Jul 13, 2015 at 12:13pm
[1 reply] : !subsir[k + 1] ise equivalent to subsir[k + 1] == '\0' . It checks ... (by MiiNiPaa)
|
by MisterWHite
Help with reading text file
|
so i can't read this text file: 7 java 1 1 c 2 2 c++ 3 3 c# 4 5 obje... |
Jul 13, 2015 at 11:41am
[2 replies] Last: So, i guess, the problem was with "fd.ignore"? (by MisterWHite)
|
Easy way to compress txt file |
Hello, I have to compress a txt file before send it to my ftp server. This files will be 3-4 mb max (uncompressed). I'm using now rar.exe (command line) wit... |
Jul 13, 2015 at 8:10am
[1 reply] : You can use a compression library like zlib: http://www.zlib.net/ or... (by coder777)
|
by jpanther
Converting an int array to string values
|
Hello everyone, I have a program that is almost complete, except that I need to take my integer values from my classLevel array and convert it into a string va... |
Jul 13, 2015 at 6:01am
[1 reply] : Do you mean something like this? #include <iostream> using namespace... (by CodeWriter)
|
by jpanther
Exiting the program after inputting 'X'?
|
Hello, I'm trying to work out all the bugs from my program, one of them is that my program will not exit if the user inputs X or x. Thank you. Here is my prog... |
Jul 13, 2015 at 3:53am
[2 replies] Last: When I added the while loop inside my main, it all worked out. Thank y... (by jpanther)
|
by eons93
96 errors, compiling after 3 days of work is a bad idea.
|
Please help me again, i now see why you try and compile may sooner than a couple days into a project. tried compiling today and got 96 errors, these are the f... |
Jul 13, 2015 at 3:47am
[7 replies] Last: Combat.cpp line 28,29,30 This is you main problem with the too many a... (by jsonlickliter)
|
by Blackhart98
Istream help
|
Need help with understanding the real uses of istream, ostream, and ifstream. Outside of using files I only know to actually call it in files ,but why would you... |
Jul 13, 2015 at 3:38am
[2 replies] Last: ostream is an o utput stream . istream in an i nput stream . ifstr... (by Zhuge)
|
need to have user end when desired and not enter 0s or letters in my calculator program |
1. I need to add a function that will alert a user not to use numbers <= 0 or a character for input. They are to enter numbers only greater than 0 on the calcul... |
Jul 13, 2015 at 2:57am
[5 replies] Last: Thank you all this resolved my issues. (by ironsoldier71)
|
help with this code |
I know I got alot of unused stuff here but this will go into a larger program. My problems are const int MAX_LIMIT and const int MAX_COPY they work with copyLi... |
Jul 13, 2015 at 2:50am
[2 replies] Last: Check this weird stuff out. if I comment these out it compiles and run... (by jsonlickliter)
|
C++ iterator design pattern |
I am trying to learn iterators in C++. I don't understand the use of NameCollection::value_type here in Iterator and addNext. Also in the next function I get ... |
Jul 13, 2015 at 12:00am
[1 reply] : I don't understand the use of NameCollection::value_type here in Iter... (by Yanson)
|
by BobMorane
Constructor issue
|
Hi, In the small program I am writing, I have two static libraries: 1. tools . In this library, I have a Date and a Time class. In both these classes, the def... |
Jul 12, 2015 at 10:51pm
[5 replies] Last: MiiNiPaa! You're right, this is not what I want to do... I just chang... (by BobMorane)
|
by apelyido271
C++ CopyOrCut/Paste from text document
|
:D Hello everyone, I am making a program where the program copy the first line on the existing text document and paste to textbox, and then copy the text on ... |
Jul 12, 2015 at 10:09pm
[1 reply] : Try creating a File class (if you don't know about classes yet, read a... (by TheToaster)
|
by jpanther
Can you write an enumerated type value to an array?
|
Hello everyone, I was wondering if you could write an enumerated type value to an array? For example: enum studentLevel { FRESHMAN, SOPHOMORE, JUNIOR, SE... |
Jul 12, 2015 at 9:18pm
[4 replies] Last: Thanks everyone for your input. This really helps me to move in the ri... (by jpanther)
|
by Durango2011
Weird behavior when populating array from file.
|
Hello folks! I am new here. I am trying to go back and revisit C/C++ programming and to refresh myself I decided to try some projects from the MIT C programmi... |
Jul 12, 2015 at 7:55pm
[4 replies] Last: WOW I don't know why I would miss this. Feel dumb, I guess sometimes y... (by Durango2011)
|
by DanteWylde
Help with Sum of Input
|
I have an assignment due tonight for a beginner programming class. My instructions are: (sum) Create a program that will output the sum of all of the numbers... |
Jul 12, 2015 at 7:36pm
[1 reply] : (sum) Create a program that will output the sum of all of the numbers... (by keskiverto)
|
by mlholder
Memory Leak/Corruption of Heap
|
Hi all, I am trying to do some review of some C++ topics that I feel I need a refresher on. The problem that I am having is that one of the class objects is ... |
Jul 12, 2015 at 4:50pm
[3 replies] Last: > But my question now is, what is the difference between my assignment... (by ne555)
|
by sajis997
assign raw pointer to the smart pointer
|
Hello forum, I have declared two smart pointers inside the class declaration as follows: class A { .............. .............. priv... |
Jul 12, 2015 at 3:10pm
[1 reply] : Any hint to get around this issue ? RTFM: http://en.cppreference.com/... (by MiiNiPaa)
|
by jhykima
Making a String Lowercase
|
Hello! I am trying to write a function that takes a string for an argument and changes that string into all lower case. However, when I run this program, it out... |
Jul 12, 2015 at 2:26pm
[2 replies] Last: @MiiNiPaa OOOOO... I see... Thank you for your help. I'm going to try... (by jhykima)
|