by sepetoner
Counting the number of words in a string
|
|
[3 replies] Last: And instead of char sentence ; strcpy(sentence, "I am Legend."); ... (by vlad from moscow)
|
by Pixelized
Pointers
|
|
[6 replies] Last: Thanks blacksheep, I came here to...point that out. (by rollie)
|
by bigdaddy21
Need help for simple program?
|
|
[1 reply] : http://lmgtfy.com/?q=cin+peek+example (by rollie)
|
by demon64
Use fstream on opened file
|
|
[5 replies] Last: thanks very much it worked had to remove line 24 to make it work.... c... (by demon64)
|
by djru
Latest attempt at this loop
|
|
[7 replies] Last: Don't use do while loops - they can be as confusing as hell. Use a whi... (by TheIdeasMan)
|
by uhh
Reading in first and last name from a file.
|
|
[3 replies] Last: Well then you've got to start thinking. That's what programming is. Th... (by Moschops)
|
by sfBlackfox
Fill array with random numbers
|
|
[2 replies] Last: Thanks for the quick reply, it worked like a charm. many thanks (by sfBlackfox)
|
by digrev
about struct
|
|
[9 replies] Last: @Peter87 Thanks, I have also seen it but at the first glance it seems... (by vlad from moscow)
|
by fraey beam
What C++ Books Should I Get ?
|
|
[1 reply] : There's a peer-reviewed list of high-quality C++ books maintained at S... (by Cubbi)
|
by yoyonyo
Transitioning to vectors
|
|
[4 replies] Last: simple answer: if (i == 0 || i == sequence.size() - 1) sum -= 75; ... (by Lowest0ne)
|
by Diana Magers
Getting an Error Message
|
|
[6 replies] Last: Got cha. Thank you. (by Diana Magers)
|
by stoffe1100
Virtual classes (Java interface style)
|
|
[3 replies] Last: Ahh i see, Thank you for the reply again peter! Solved! (by stoffe1100)
|
by time to c
Basic Encryption changes file size O.o
|
|
[7 replies] Last: Thanks for explanation. that solved my problem. (by time to c)
|
by dancks
If statement never executes???
|
|
[6 replies] Last: so I noticed: al_set_target_bitmap(al_get_backbuffer(display)); al... (by dancks)
|
by co1ote
change stdout position
|
|
[no replies]
|
Need Help with If and Else Assignment |
|
[6 replies] Last: Cout and Cin in your code should be cout and cin. This won't compile, ... (by TheIdeasMan)
|
by mpdasa
My first program doesn't work
|
|
[1 reply] : Your first program shall have the main function. (by vlad from moscow)
|
by saeedeh
error: 'Stack' is not a template type &...
|
|
[2 replies] Last: my problem was using template class & friend it with another class! (T... (by saeedeh)
|
visual c++ annoying error |
|
[1 reply] : please use code tags net time you are passing the object "Working" in... (by Jikax)
|
by djru
returning parameters to main
|
|
[4 replies] Last: you could also use structures: typedef struct { int a; int b; in... (by Jikax)
|