by hashbrown
Is there a difference between #ifndef FOO_INCLUDED_H and #ifndef FOO_H
|
|
[7 replies] Last: Thanks @booradley60 for the info. Though I haven't seems any issue so ... (by liuyang)
|
by loni
C++ Text-to-speech using Speech Synthesizer object
|
|
[6 replies] Last: Yes problem was with References / System.Speech now works but I'm stil... (by loni)
|
by Joe1903
Converting hexadecimal digital to integer
|
|
[6 replies] Last: If you can use C++11 features, you could try to do it like: #includ... (by Nico)
|
by shervin1373
question
|
|
[5 replies] Last: @the ideas man I was trying recreate the error that Peter was referr... (by Bdanielz)
|
by SweatyJuice
Beginner exercise problem
|
|
[no replies]
|
by Gantzias
Other way to write the same code
|
|
[12 replies] Last: cin.ignore, (std::basic_istream::ignore): http://en.cppreference.com/w... (by closed account E0p9LyTq)
|
by DannySun
Pass by Argument + Return by Value= double copy?
|
|
[5 replies] Last: Thanks for your detail explanation, Andy. Now I understand what's goin... (by DannySun)
|
by roots
Class errors
|
|
[8 replies] Last: Okay, this is making sense to me now, thanks all. (by roots)
|
by Joe1903
printf characters as hex in C
|
|
[8 replies] Last: "ab\tcd\ne\tf\n"; doesn't mean anything. It's (just) test data, which... (by andywestken)
|
Loop Factorial |
|
[2 replies] Last: #include <iostream> using namespace std; int main() { int total=... (by mertsamilgul)
|
by ztdep
how to input from the third row of a file
|
|
[1 reply] : If there is only one value in each row, you can do infile.ignore(4) ... (by Arslan7041)
|
Problem with std::lexicographical_compare |
|
[2 replies] Last: Just a question : Can it be done without std::lexicographical_compare? (by Naughty Albatross)
|
This is probably a simple mistake but Ive honestly no idea why my program is failing |
|
[11 replies] Last: Why is my solution not working? #include <iostream> int main() { ... (by closed account E0p9LyTq)
|
by wxgeek99
Printing to printer
|
|
[5 replies] Last: Well...I guess the short answer is "you can't get there from here". So... (by wxgeek99)
|
by msulli1355
multiple definition of Character.getName() (1,2)
|
|
[26 replies] Last: I looked in the Code::Blocks Project->Properties and it says that my p... (by msulli1355)
|
by fivestar
RANDOM NUMBER GENERATOR HELP
|
|
[8 replies] Last: FurryGuy youre a beast. thanks. (by fivestar)
|
by D3Mxon
Triangle's sides and angles with cosine, sine theory, top-up design
|
|
[1 reply] : Note that 3,14 does not mean what you think it means. Because of the... (by helios)
|
by loni
C++ line index in text document
|
|
[3 replies] Last: One way you could do this. 1. Read your file line by line to a string... (by Bdanielz)
|
Unresolved external symbol |
|
[2 replies] Last: You should never include a .cpp file in another one, only include head... (by closed account E0p9LyTq)
|
by Gantzias
Why does this not work?
|
|
[4 replies] Last: You really shouldn't use the C library random functions srand() and ra... (by closed account E0p9LyTq)
|