by masterinex
about command line arguments
|
|
[10 replies] Last: No, it returns a number less than, equal to, or greater than zero, de... (by lastchance)
|
by hoboCPP
Using "std::find" from the algorithm librairy for a list of struct?
|
|
[4 replies] Last: auto list= listPerson; I believe this makes a copy of the list. Tha... (by dhayden)
|
Question regarding assigning inputs to different data types |
|
[4 replies] Last: My mistake on 'a'. You are correct that it would read 47, '1' and 8 I... (by dhayden)
|
Output without coding display |
|
[10 replies] Last: [quote=jonnin]you can write the output to a web page (which can be a f... (by Enoizat)
|
by ExSanity
Change file's name at runtime?
|
|
[3 replies] Last: The following worked on Windows (rather to my horror). #include <cst... (by lastchance)
|
by Meden
Database as a storage option
|
|
[2 replies] Last: It is possible. It depends what database server you want to use. Norma... (by TwilightSpectre)
|
by keh k lenge
Object behaviours
|
|
[1 reply] : I'll assume you mean something like: struct X { int val; }; X... (by TwilightSpectre)
|
by ivar5000
How do I build a data structure with objects as member variables?
|
|
[3 replies] Last: I'm using the c_str() because I believe the constructor for ifstream... (by jlb)
|
by masterinex
how to pass 2 arguments into Command Argument
|
|
[1 reply] : Have you tried using getopt_long? There's a good example here https://... (by ivar5000)
|
HW/Assignment Issue While Loop Misbehavin' |
|
[5 replies] Last: Let's look at the output and be clear about what's getting printed: - ... (by dhayden)
|
by christianwos
Unknown Operator
|
|
[3 replies] Last: Thank you to both of you! (by christianwos)
|
by masterinex
how to convert at txt file to html
|
|
[3 replies] Last: Hello masterinex, I have a program that is similar to what you are tr... (by Handy Andy)
|
by EERD
Overload
|
|
[1 reply] : function overloading is have 2 versions of the same function. operato... (by jonnin)
|
Design questions - creating a command line interface and controlling privilege level |
|
[4 replies] Last: perfect, thanks a lot Thomas1965!, got it (by erixliechtenstein)
|
font color error |
|
[10 replies] Last: Hello suyashsing234, Your welcome. Sometimes it is the little things... (by Handy Andy)
|
by rajhansk
what is type casting of classes and where is it used??
|
|
[3 replies] Last: It's a const reference to an object of type A . (by MikeyBoy)
|
explaination of static in layman's language |
|
[1 reply] : The static keyword has many uses in C++. static local variables If ... (by Peter87)
|
goto for an integer |
|
[5 replies] Last: > so what should i use instead of goto which is also as simple as goto... (by JLBorges)
|
by xari2
function void main()
|
|
[2 replies] Last: see what tulu wrote and instead of void main() use int main() and befo... (by closed account 1vf9z8AR)
|
by darje
binary files
|
|
[2 replies] Last: you have to put a flag on the file open. fn.open(file, ios::binary); ... (by jonnin)
|