by moahawk112
looking for numbers
|
|
[5 replies] Last: You can't cin>> into an array and have it be populated with the digits... (by Zhuge)
|
by peaco
Private data in classes
|
|
[2 replies] Last: Thanks, knew it was something simple. (by peaco)
|
by arboria
using both int and char types for cases in one switch statement
|
|
[3 replies] Last: That did it! Many thanks to you, Disch! It's so easy to lose perspecti... (by arboria)
|
by studentffm
Run program in pieces
|
|
[4 replies] Last: http://cplusplus.com/doc/tutorial/files/ using the string class http:... (by gcampton)
|
by cppbeg
short function
|
|
[12 replies] Last: This is shorter - but is it any less 'readable' ? void menu_display(... (by guestgulkan)
|
by Wylbur
Input Redirection for Windows Command Line Apps
|
|
[3 replies] Last: I was going to post the following (but had to go pick up my wife and k... (by Duthomhas)
|
by saxplayer92
NASCAR problem
|
|
[no replies]
|
by itzjonno
Pointers in functions
|
|
[1 reply] : This has nothing really to do with pointers. Here, the & operator i... (by Disch)
|
opinion on continue and break statements |
|
[5 replies] Last: Doesn't your teacher ever use the 'switch' structure? You usually nee... (by cnoeval)
|
by H P
g++ -m32
|
|
[3 replies] Last: Thank you. After searching a bit, I required to install libstdc++4... (by H P)
|
by shivas88
Problem with selection sort
|
|
[5 replies] Last: #include<iostream> #include<cctype> using namespace std; void Se... (by Maimaje Bello Abdullahi)
|
Wordwrap function |
|
[2 replies] Last: std::string wordWrap( std::string str, size_t width = 55 ) { s... (by jsmith)
|
by dmpm
Mean, Median, Mode
|
|
[5 replies] Last: bazzy +1 , also you should get rid of the scope on lines 11 and 51 unl... (by gcampton)
|
by valrecx
input problem
|
|
[1 reply] : http://www.cplusplus.com/forum/articles/6046/ (by Bazzy)
|
by ppolcz
disable a variable?
|
|
[1 reply] : scope: //... { int variable //using it } //disable ... (by Bazzy)
|
by ppolcz
object as parameter
|
|
[1 reply] : void putin (Pont tmp) { last->next = new Pont; *last->next = tm... (by Bazzy)
|
by ainaBeginner
Problem on assigning values to a structure
|
|
[1 reply] : because t is a pointer to a struct test and you do not initialise ... (by closed account z05DSL3A)
|
by nancee
String concatenation
|
|
[4 replies] Last: I'm assuming you have been learning about arrays in the last week, or ... (by gcampton)
|
by gianx80
c++ and assembly: undefined reference to
|
|
[5 replies] Last: I added this line to class_razionali_debug.cpp extern "C" int rad (... (by gianx80)
|
by jobarteh88
I want to design a programe that can search for a information in text file.
|
|
[12 replies] Last: thanks to you all. (by jobarteh88)
|