by rozick1
why does std::bind work here?
|
|
[5 replies] Last: It means that C++ standard doesn't say what type should be returned f... (by deleted account xyzzy)
|
by BuckedUp
Multplexer 4x1 program
|
|
[4 replies] Last: a very beginner friendly take on it: int mux(int a, int b, int c, in... (by jonnin)
|
by Bengbers
Sharing socket between class instances
|
|
[5 replies] Last: Dbuging and stepping through my code learned me that indeed there was ... (by Bengbers)
|
by Mishalit
Algorithm review
|
|
[8 replies] Last: Using C23++ std::ranges::to so that the vector can be const (can't be ... (by seeplus)
|
by Fojaxx
Decode dtmf tones
|
|
[1 reply] : You need to process an audio signal and detect two frequencies in the ... (by AbstractionAnon)
|
by skiner36
Download from Google Drive
|
|
[6 replies] Last: I don't have the knowledge to Poke around that source One of the bes... (by deleted account xyzzy)
|
by SimpleCoder
Overloaded Functions Returning Const & Non-Const Pair<>
|
|
[3 replies] Last: Thanks for the advice, both of you. mbozzi, that's it! My parenthese... (by SimpleCoder)
|
by jNc
Split cpp file, linked to one .h
|
|
[3 replies] Last: If you need information on why there's so much hate for global variabl... (by newbieg)
|
by Bengbers
Reading from a non-blocking socket
|
|
[14 replies] Last: One of the options in the Eclipse CDT debugger view is to display the ... (by Bengbers)
|
by jNc
how to get building time and compile time w cpp or w some api
|
|
[3 replies] Last: I don't know QT, but with Visual Studio and Code::Blocks there's an ou... (by deleted account xyzzy)
|
by jNc
How to create object of class using char variable
|
|
[6 replies] Last: If you want to use strings to refer to objects you can use std::map (o... (by Peter87)
|
by ElusiveTau
Can a base class function be overriden if it isn't declared virtual?
|
|
[2 replies] Last: Thanks JLBorges. That's new to me. (by ElusiveTau)
|
by jNc
How to use C code in C++
|
|
[4 replies] Last: A good C++ compiler will consume C code without too much problem, reco... (by deleted account xyzzy)
|
by Jonathan100
Debug went crazy
|
|
[1 reply] : Maybe Xil_In32 also needs to be declared as a volatile function. st... (by salem c)
|
by Bengbers
What is send over the socket when sending std::string?
|
|
[14 replies] Last: Since I want to learn C++, I am trying to convert all the C-code from... (by deleted account xyzzy)
|
by impetus
is it correct to use continue too skip some loop conditions?
|
|
[2 replies] Last: With example: for/while/do ... { A; if ( condB ) continue; B... (by keskiverto)
|
by IanTG
Recursive
|
|
[13 replies] Last: @ IanTG : Could you explain how you got from A to B? A: [quote=IanT... (by keskiverto)
|
by Happilicious
Is interpreting sensor value safer with unsigned?
|
|
[3 replies] Last: I have read the application details and it is signed 16-bit number in ... (by Happilicious)
|
by impetus
How to color highlight text output in terminal (C++ and Windows)
|
|
[4 replies] Last: Since the OP mentioned Windows here's an older Win-centric header-only... (by deleted account xyzzy)
|
by jNc
how to declare array in Constructor
|
|
[9 replies] Last: Yes. I used a struct for an example of a constructor for simplicity as... (by seeplus)
|