Code for menu using potentiiometer and button |
|
[no replies]
|
by ZeroStart
Class template for stack in C++
|
|
[2 replies] Last: You might want to try this as a test case for your code. int main() {... (by doug4)
|
by sergelac
using ## in define
|
|
[3 replies] Last: here is the rest of the code #define SELECTCASE(sMainStr) { AnsiS... (by sergelac)
|
by btoohey4
Making Program Compatible
|
|
[4 replies] Last: I see you took my advice from the other thread and make a separate Fli... (by AbstractionAnon)
|
by Luke676
2 dim array I/O files
|
|
[1 reply] : You need a second getline() probably before the second loop. (by coder777)
|
by norcal
Help: Rock, Paper Scissors Game
|
|
[4 replies] Last: int userscore,compscore; userscore=0; compscore=0; Move this code o... (by Thomas1965)
|
How do I get a variable to recalculate with every iteration of a WHILE loop? |
|
[1 reply] : timeCalc = 0; (by SamuelAdams)
|
by a10e29
Mismatched Signatures???
|
|
[2 replies] Last: Good answer. https://en.wikipedia.org/wiki/Precondition In the pres... (by a10e29)
|
by technologist
out of range, no error
|
|
[2 replies] Last: "aha" Thx (by technologist)
|
by chusaijames
Big int adding problem
|
|
[1 reply] : try to use the code tag to quote your code, it will make it look much ... (by ZeroStart)
|
vector index. |
|
[4 replies] Last: bool all_cards_of_same_suit( const std::vector<std::string>& cards ) ... (by JLBorges)
|
question mark |
|
[2 replies] Last: its working. Thankyou. (by riyadhhossain01)
|
by connormcwood
[C++] How exactly would one initialise a vector which is being created by a forward declaration?
|
|
[4 replies] Last: // using namespace std; // avoid in header files class cPlayer { /... (by JLBorges)
|
by raikhan013
problem with long integer multiplication
|
|
[1 reply] : Somehow I don't understand your problem. If all you need is to get the... (by Thomas1965)
|
by btoohey4
Display and Save Linked List
|
|
[4 replies] Last: Option 3 by the way would look like this: Add a function declaration i... (by Chervil)
|
by ketnav
Caesar
|
|
[2 replies] Last: For each character you loop through all letters in the alphabet. When ... (by Peter87)
|
by ketnav
Caesar
|
|
[2 replies] Last: Please don't double post. http://www.cplusplus.com/forum/beginner/1881... (by integralfx)
|
by connormcwood
[C++]Using Heading Guards But Still An Identifier Error
|
|
[3 replies] Last: It's just a pointer so the compiler only needs to know that cSquare is... (by Peter87)
|
Check to see if a file has content inside |
|
[1 reply] : inline bool has_content( const std::string& path ) { return std::ifst... (by JLBorges)
|
by rabster
Clock() vs time() vs std::chrono::high_resolution_clock
|
|
[16 replies] Last: Just define _CRT_SECURE_NO_WARNINGS and these warnings would go away.... (by rabster)
|