by DrZoidberg
Running an external .exe in a console app
|
What's a good alternative to system(...)? I would like to place the .exe in the same folder as my p... |
May 31, 2013 at 11:45pm
[2 replies] Last: Sorry, should have looked it up first. (by DrZoidberg)
|
by DrZoidberg
Writing to/reading from files
|
When using ifstream file; file.open ("Data.txt"); file >> variable; Is there a way t... |
May 31, 2013 at 11:45pm
[2 replies] Last: Thank you (by DrZoidberg)
|
by konovoloff
Trying to extract a certain string from a text file
|
okay so im new to programming and Ive emailed my prof 3 times to ask for help but she hasnt replied,... |
May 31, 2013 at 9:38pm
[1 reply] : Here the entire contents of the file is displayed. But you could easil... (by Chervil)
|
Working with Arrays and Loops |
I am trying to create program that asks a students information. However when I run the program the f... |
May 31, 2013 at 9:29pm
[4 replies] Last: right clarification, miiniipaa. apologize for my lack of precision, bu... (by ar2007)
|
STL list, need help using remove |
I am creating a "Graph" ADT using a multi-list for one of my c++ classes. I am not very familiar wit... |
May 31, 2013 at 8:23pm
[4 replies] Last: No, that would not work. The parameter for remove_if is a predicate .... (by keskiverto)
|
by Nexy
friendship not being recognized
|
Hello, I'm learning about the friend function but I can't seem to get it work though. Can someone te... |
May 31, 2013 at 6:10pm
[14 replies] Last: That still didn't fix anything. I get the same error and still can't i... (by Nexy)
|
by LethalJ
Random Number Generation Issue
|
Hello everyone, I have recently watched a tutorial on generating random numbers, however there seems... |
May 31, 2013 at 5:13pm
[3 replies] Last: Thank you for all the feedback.... @dedlier Although with your method ... (by LethalJ)
|
by Jinjaninja1
Need Help with 2D dynamic arrays and finding largest product of any four adjacent numbers in the array (1,2,3)
|
Hey guys, I need help with writing a program that creates a 2D dynamic array from a command line arg... |
May 31, 2013 at 5:09pm
[40 replies] Last: We have already shown by pointing you to a thread that has an example.... (by keskiverto)
|
by geezle86
Please help me, about decimal in C++..
|
So, i wrote this code: //On a certain day the British pound was equivalent to $1.487 U.S., th... |
May 31, 2013 at 4:50pm
[10 replies] Last: BTW... All standard i/o manipulators which set or reset something, w... (by andywestken)
|
by mjhenre
Troubles with mancala
|
For my class I'm making a mancala game, but I'm having troubles with the actual movement of marbles ... |
May 31, 2013 at 4:49pm
[no replies]
|
by DrZoidberg
How to create an unclosable form ?
|
I want to create a form that you can't close. Obviously disabling the Control Box isn't going to be ... |
May 31, 2013 at 4:39pm
[3 replies] Last: Thank you both, I got an in-depth answer in the Windows forum. (by DrZoidberg)
|
by letscode
Opening new program from within a program
|
I want to open a new terminal window using a program just the way a window is created using the wind... |
May 31, 2013 at 3:39pm
[9 replies] Last: Yes i understand that for creating a process, you need to use some OS ... (by letscode)
|
by Adam Brown
Memory Leaks. String Help
|
So, I'm having a problem actually understanding memory leaks I suppose. I thought I had a grasp, but... |
May 31, 2013 at 2:22pm
[8 replies] Last: Does the standard allocator for string use memory pooling? Many impl... (by JLBorges)
|
by Eren Jaeger
ERROR: Label "foo" was referenced but not defined.
|
So I was fooling around with some C++ and got the previously stated error with some code that looked... |
May 31, 2013 at 2:20pm
[10 replies] Last: Anybody with access to this forum has access to the Internet at large,... (by MikeyBoy)
|
by Zexd
for switch
|
I wrote the following program... I didn't compile it yet because I am looking for the way to break a... |
May 31, 2013 at 2:15pm
[10 replies] Last: something like this? bool bStillGoing = true; while(bStillGoi... (by mutexe)
|
by tdk93
tried linklist implementation using two classes(node and list), error
|
i tried implementing Singly Linked List using two classes, SLLNode(node) and SLL(list class) Here're... |
May 31, 2013 at 2:15pm
[3 replies] Last: It is obvious that instead of SLL *head, *tail; there shall be SLLN... (by vlad from moscow)
|
by Pebble
Simple Class: Path of execution.
|
I'm teaching myself about Classes so i can start using SFML, But Cant work out how the function at ... |
May 31, 2013 at 2:06pm
[2 replies] Last: Thank's coder777. (by Pebble)
|
by mohd9011
problem with atan in c++
|
Iam writing a program for my senior project its a program to input the current coordinates and the d... |
May 31, 2013 at 1:44pm
[4 replies] Last: There are a few issues with your original code. if(x1=x2) if(y1=y... (by Chervil)
|
by Rakanoth
Program Crash
|
hey i took this code to see how my visual studio 2012 will respond and it crashed i took this code ... |
May 31, 2013 at 1:22pm
[6 replies] Last: some IDEs support two types of execution, one that closes after finish... (by Rechard3)
|
by herold
Help needed to convert path in C
|
Hello Friends, I am writing one module in which i need to convert the path of directory (Wi... |
May 31, 2013 at 1:16pm
[2 replies] Last: your question is not really very clear, i'm not sure i understood all ... (by Rechard3)
|