new programmer, cin.peek() |
|
[3 replies] Last: You can't, AFAIK. Streams are queues. You can only look at what's at t... (by helios)
|
by PSPMAN90
How to make Cout (screen) buffer bigger?
|
|
[7 replies] Last: Thanks for all your help :D Glad to have you guys, Computer Science ... (by PSPMAN90)
|
Namespace and regions |
|
[4 replies] Last: Thanks for your time! (by AlwaysLearning)
|
by TheMist
Trying to figure out adding in a sequence.
|
|
[3 replies] Last: Thanks, I was hoping it wasn't too complex, as I'm still a beginner lo... (by TheMist)
|
by bulldawg5808
boolean expression
|
|
[5 replies] Last: line 14 should be bb = ( tolower(c) == 'y' ); and line 17 cout << ... (by Bazzy)
|
by studentm
Function
|
|
[2 replies] Last: Thanks. My book does not explain that good and does not provide an exa... (by studentm)
|
by baross
while loop not working - on invalid letter is entered. thanks
|
|
[3 replies] Last: You're doing it again. You create a variable withouth initializing it ... (by mcleano)
|
by huzhanchi
who can give me some advice about learning c++?
|
|
[2 replies] Last: thanks,i think i should do a lot work on the standard library. (by huzhanchi)
|
by mobymedic
Question about strings
|
|
[1 reply] : Don't mix cin >> x with getline( cin, s ) . http://www.cplusplus.c... (by Duthomhas)
|
by JRevor
Array question
|
|
[3 replies] Last: Thanks. (also, thanks for the second answer huzhanchi, but the idea wa... (by JRevor)
|
by Harlequin
Windows Programming...
|
|
[2 replies] Last: hi Harlequin WndProc() is called by system, make the "CALLBACK"go... (by huzhanchi)
|
Very basic... getting a name capitalized |
|
[6 replies] Last: Here's a little module for you to do that kind of stuff. // string... (by Duthomhas)
|
by wachtn
function returns
|
|
[3 replies] Last: Yeah, I wanna know how to use the returned value. Thanks Bazzy, tha... (by wachtn)
|
by Asad Abbas
Tic Tac Toe!!
|
|
[1 reply] : Use loops. The only special cases you need to check are the two diagon... (by Duthomhas)
|
by unregistered
what is the difference between a static_case<>() and a dynamic_cast<>()?
|
|
[1 reply] : This tutorial explains the various _cast types: http://www.cplusplus.c... (by Bazzy)
|
by NerdyOgre254
Recognising WM_CHAR messages
|
|
[no replies]
|
by m1st1c
Nested loop output problem
|
|
[1 reply] : P.S. Forgot this information....Calculate the GPA for each class and d... (by m1st1c)
|
by ab8880
Simple fstreams problem
|
|
[5 replies] Last: while (!infile.eof()) { int x,y,z; infile >> x >> y; // get a l... (by ab8880)
|
by meesa
Working with floats, adding precision (1,2)
|
|
[23 replies] Last: That's correct. According to the "laws of math" for rounding, you star... (by meesa)
|
by zsukal
How to convert string to char* and use function(char* text)
|
|
[4 replies] Last: C4996 can always be safely ignored. #pragma warning(disable:4996) ... (by helios)
|