by frek
The type of sting literals (1,2)
|
|
[22 replies] Last: and also: auto str {"hello"sv}; where str becomes a std::string_... (by seeplus)
|
by zsess
How do I get this to only output the userinput that it finds.
|
|
[4 replies] Last: Using arrays, then possibly something like this - where it is easier t... (by seeplus)
|
by ruzip
Looking for a LoadLibrary C example that works with GCC
|
|
[3 replies] Last: LoadLibraryA means you're compiling as ASCII and not unicode. Hence st... (by seeplus)
|
by ruzip
Linking FreeGlut Static Library to DLL
|
|
[4 replies] Last: Ok thanks kigar64551 , will try the trace option. (by ruzip)
|
by ruzip
Using Static C++ Library in C
|
|
[10 replies] Last: Keep in mind that programs like gcc and g++ are so-called "drivers... (by kigar64551)
|
by sandbox007
Copying from txt file to parallel arrays using pointer
|
|
[8 replies] Last: Maybe something like this: #include <iostream> #include <fstream> #... (by seeplus)
|
by KaiTang
How to split a string according to "|"
|
|
[5 replies] Last: Using C++20 ranges: #include <vector> #include <ranges> #include <i... (by seeplus)
|
Prj Hlp |
|
[4 replies] Last: Part 3: int main() { movieList movie; movie.OpenMovieFile(); mo... (by seeplus)
|
by BigBen
Saving a vector of objects
|
|
[3 replies] Last: As others have said, your problem is mostly about how to write (read) ... (by keskiverto)
|
by Worldtreeboy
how does the program get to the next line or next char? ?
|
|
[2 replies] Last: > how does getline reads the 2nd line if getline function is called a... (by JLBorges)
|
Project Help |
|
[6 replies] Last: okay tnx for that. I'll try to work on it. (by closed account 3RGNvqkS)
|
by frek
Determine whether a triangle can be built from a given set of edges
|
|
[9 replies] Last: @Duthomhas You mean applying a non-comparison sort algorithm for both ... (by frek)
|
by jphillips356
need assistance! Write a program that reads students’ names followed by their test scores.
|
|
[4 replies] Last: https://stackoverflow.com/questions/1452721/why-is-using-namespace-std... (by deleted account xyzzy)
|
by ruzip
Encode integer value to 4 bytes in a file
|
|
[7 replies] Last: It's not usually necessary to test your machine's byte order, because ... (by mbozzi)
|
by lexicution17
My program keeps getting zero as an answer
|
|
[1 reply] : [quote=lexicution17]I keep getting 0 as an answer for the percentage ... (by deleted account xyzzy)
|
by jphillips356
Need assistance with this code please!!
|
|
[7 replies] Last: we're not allowed to use strings like you use, we have to use chars ... (by seeplus)
|
by ruzip
Change Insertion Operator Symbol by Macro?
|
|
[14 replies] Last: The term POD is no longer used by the standard, and its type traits (... (by Duthomhas)
|
by t im
About the cmp in priority_queue
|
|
[1 reply] : > Why should I use decltype(cmp) The type of cmp - the closure typ... (by JLBorges)
|