by oldnewbie
Again pointer question
|
|
[5 replies] Last: When you are assigning string as: char *pstr = "string literal which c... (by techie07)
|
by paulh428
powfun Using loops
|
|
[2 replies] Last: int powfun(int a, int b) { int p = 1; for (int i=0; i<b; i++) ... (by techie07)
|
by pinkkfloydd
Big O for the delete [] operator
|
|
[4 replies] Last: It depends on whether data is an array of POD or non-POD types.... (by PanGalactic)
|
by jnennat
problem w/ microsoft visual c++ 2010 express on 64-bit platform
|
|
[5 replies] Last: Are you referring to pre-compiled headers? If you create an "Empty Pro... (by Zhuge)
|
by shbunch
Implement Time Program
|
|
[1 reply] : How much do you know about classes? If you have no idea where to begin... (by Zhuge)
|
by jimmyluk
C++ Chapter 6!
|
|
[2 replies] Last: you can convert a number to a string with the <stringstream> set of ob... (by ultifinitus)
|
by andersonwq
Need some help
|
|
[2 replies] Last: You definitely have memory leaks in pushqueue(). It doesn't look like ... (by Zhuge)
|
function returns a pointer to the largest number in an array |
|
[7 replies] Last: finaaaally it works Thanks to all of you :) (by computer girl)
|
by prophetjohn
weird output in linux (works fine in windows)
|
|
[1 reply] : okay, never mind. the input file was created in windows. i created a n... (by prophetjohn)
|
by warscoten
Help with Program
|
|
[3 replies] Last: Your code has a lot of mistakes. Have you even tried to look over it y... (by Browni3141)
|
by Spot
Access violation reading location
|
|
[8 replies] Last: It's also worth nothing that the above cases can be avoided if you are... (by Disch)
|
by broot
multiple "OR"s
|
|
[7 replies] Last: Also make sure no code within the || or && expressions has side effect... (by rocketboy9000)
|
by tempestt
Trouble passing by reference
|
|
[4 replies] Last: Thank you Computergeek01! I understand now where the error is and how... (by tempestt)
|
pointers and malloc() |
|
[14 replies] Last: @Disch and anyone planning to post in this thread: http://cplusplus.co... (by Albatross)
|
by soysause
Input
|
|
[2 replies] Last: How about inputting the data into a string and then searching for non-... (by Albatross)
|
by Krahl
stack overflow (1,2)
|
|
[22 replies] Last: I wasn't being picky about using at(), it's just that when I first beg... (by Krahl)
|
by jacqu35
getline(cin, string) issue
|
|
[8 replies] Last: I want the program to start again hence the while(1) but I didn't know... (by jacqu35)
|
reading from a file into an array |
|
[1 reply] : Parsing data files is largley dependent on the format of the data with... (by Computergeek01)
|
by TpOreilly
UpdateWindow()
|
|
[17 replies] Last: Not really, if you call SetWindowText the controls handle themselves q... (by hanst99)
|
by valdeth
Reading a matrix from a file
|
|
[2 replies] Last: A common method is to write the size of the matrix, followed by the va... (by Duthomhas)
|