by jes516
Restart program
|
|
[8 replies] Last: An if statement will auto encapsulate the next line of code if no brac... (by closed account j3Rz8vqX)
|
by ImmaNewb
while loop in an if statement
|
|
[15 replies] Last: Also thank you void life. Shoulda listened to you the first time aroun... (by ImmaNewb)
|
by enemy
Signed char
|
|
[12 replies] Last: The char type is distinct from both signed char and unsigned char... (by LB)
|
by Bark Snarly
Calling functions within functions
|
|
[7 replies] Last: Sure. Just to anyone wondering, I did some further testing and it was ... (by Bark Snarly)
|
by Relit
Quick question :)
|
|
[3 replies] Last: You can find several BASIC interpreters written in C++ here: https:/... (by AbstractionAnon)
|
by dmitri95
Problem with stacks
|
|
[2 replies] Last: Line 1,23,24,25,60: Where is stackType declared? Line 3: Why is n... (by AbstractionAnon)
|
by paulmaywald
calculator
|
|
[4 replies] Last: i got it all fixed thanks guys i really appreciate it and if you have ... (by paulmaywald)
|
by ak16
macro
|
|
[4 replies] Last: As keskiverto stated, #define is a holdover from C. #defines were... (by AbstractionAnon)
|
by iren37
Use perl to ceate Open Office Letters??
|
|
[2 replies] Last: I would suggest you to look here http://4k.com.ua/products/others/libo... (by SlamUa)
|
by Gameman
Learning socket programming
|
|
[no replies]
|
by enemy
Signed vs unsigned char
|
|
[3 replies] Last: All characters are represented by character code i.e. number. Mapping ... (by MiiNiPaa)
|
by enemy
while loop
|
|
[3 replies] Last: THANKS; Peter87, and kaskiverto, I owe U for that!!! (Task in my book... (by enemy)
|
by abromeo
Need Help C++ (BEGINNER)
|
|
[1 reply] : There is a tutorial on this website as well as a reference. The forum ... (by LB)
|
Modulus operator: Why does this output to 18? |
|
[3 replies] Last: 3%4 gives the remainder from the division 3/4 . If you have a%b ... (by Peter87)
|
Logical error with exchanging values. How do I fix this? |
|
[1 reply] : int xx; int newxx; xx=11; xx = newxx; --- value of xx is not define... (by keskiverto)
|
by coolcat3
Aligning Output
|
|
[1 reply] : Use setw follow the following link http://www.cplusplus.com/reference... (by anmol2701)
|
by coolcat3
Calling Global Variables
|
|
[6 replies] Last: You could provide various functions to retrieve the health statistics.... (by TwilightSpectre)
|
by ECEsasha
Making sure I'm actually using insertion sort?
|
|
[1 reply] : Looks like insertion sort. As a bonus: templated insertion sort imple... (by MiiNiPaa)
|
by muda
HELP PLEASE!!
|
|
[1 reply] : Please note, that this is not a homework site. We won't do your homewo... (by MiiNiPaa)
|
by ak16
#define and const
|
|
[7 replies] Last: Thank you all guys for your reply. you above 1st and 2nd is really u... (by ak16)
|