by cimiligu
Classes
|
|
[3 replies] Last: that helps a little, thanks! (by cimiligu)
|
by DesmondLee
While loop to For Loop
|
|
[2 replies] Last: @imohamme5 Nope, your loop is wrong. Try this: for(double f=0.2; f<0.... (by coder777)
|
by DesmondLee
C++ statement represent each formula
|
|
[2 replies] Last: @kemort yeap. i just want to check the answer. I not sure whether i di... (by DesmondLee)
|
by raviteja956
isprint
|
|
[1 reply] : '\n' is called escape sequence, see: http://en.cppreference.com/w/cpp... (by coder777)
|
by Kalimachus
Ignoring a specific string or item within a line but reading the rest
|
|
[1 reply] : You can use the ignore method. http://www.cplusplus.com/reference/istr... (by Golden Lizard)
|
by iclearwater
array offset of pointer
|
|
[3 replies] Last: Hi liuyang and JLBorges, Thank you both very much for your help. I've... (by iclearwater)
|
Need help with my code please. c++ |
|
[6 replies] Last: Those were just the function headers, my compiler would have given an ... (by imohamme5)
|
by xuwqiang1994
class template
|
|
[2 replies] Last: thanks . should be ++top in push() and top-- in pop() (by xuwqiang1994)
|
Simple Point of Sale program |
|
[1 reply] : your main body is closing at line no 59 #include<iostream> using na... (by bird1234)
|
by KingpinKeys
Optimal Change Calculator TIPS for easier expansion
|
|
[1 reply] : #include <iostream> #include <vector> constexpr auto coinArray {50,... (by gunnerfunner)
|
by Baconator
Super noob question, but i don't fully understanding what is being asked here.
|
|
[5 replies] Last: Even operator << sends input to the stream, the problem might have mea... (by gunnerfunner)
|
Wrong program output (in some cases) |
|
[4 replies] Last: Seems it was, what you just suggested. Now, program gives ALWAYS corre... (by Oriol Serrabassa)
|
Need to revise logic that isn't working |
|
[1 reply] : The inner loop waits for i to reach 21 but that will never happen.... (by Peter87)
|
by Andy1222
loop help
|
|
[7 replies] Last: Thank you for your help :) (by Andy1222)
|
by sancr963
A hand? ;-)
|
|
[3 replies] Last: whenever you use the keyword "new" it is always followed by a "delete"... (by imohamme5)
|
by Big man
Organize a structure and divide a string in two parts
|
|
[1 reply] : #include <iostream> #include <string> struct StringDiv { std::s... (by gunnerfunner)
|
by Kourosh23
C++ arrays and array parameter - BUG!
|
|
[8 replies] Last: @moonman239 , yes, I definitely will. (by Kourosh23)
|
by motokosan100
How to "randomize" a sequence of numbers each time a function is called?
|
|
[2 replies] Last: Just piggybacking on this post, Is there a benefit to using a vector ... (by MistahMoose)
|
by chiaritoj
How do I make a button in Windows Form shutdown my computer?
|
|
[3 replies] Last: Even shorter: system("shutdown /s"); (by moonman239)
|
by vsireanu
Prime numbers
|
|
[1 reply] : The program should calculate the sum of all the prime numbers greate... (by yanevski)
|