by HotaLIsa
is there anyway i can write ths code in a shorter way?
|
|
[4 replies] Last: It is the miracle of encapsulation. PS. I see no input validation. N... (by keskiverto)
|
by Bad25
C++ Compliler Problems
|
|
[9 replies] Last: 'nullptr' was not declared in this scope nullptr is a keyword that w... (by keskiverto)
|
by almostcold56
reading and printing arrays
|
|
[1 reply] : First u have to fill the array named item_number, description and the... (by sylphsang)
|
by redchem
I need to convert CString Hex ip address
|
|
[5 replies] Last: I found the same one and it gave issues with char type cast to CString... (by redchem)
|
by mkb555
Destructor fails when passing as parameter
|
|
[2 replies] Last: Ah, you're right! I didn't think of that! (by mkb555)
|
by JUAN DENT
Cannot control iostream output to using decimal
|
|
[2 replies] Last: Yes!!! What a dumb mistake I made!! Very good insight! Thanks so much... (by JUAN DENT)
|
by Mooseman
Counting the number of binary comparisons
|
|
[no replies]
|
by yocody95
random integer 5x5 grid
|
|
[1 reply] : http://www.cplusplus.com/forum/beginner/22286/#msg116627 (by kbw)
|
by JUAN DENT
Why is default_delete's operator() not declared noexcept?
|
|
[2 replies] Last: Since destructors should never throw (are assumed noexcept even if no... (by cire)
|
by JUAN DENT
How to find extent of a native array inserted in a unique_ptr?
|
|
[2 replies] Last: Good point cire Thanks ! (by JUAN DENT)
|
by wh1t3crayon
How to pass a derived pointer in a virtual function?
|
|
[7 replies] Last: You may want to google for double dispatch to see another approach to... (by wh1t3crayon)
|
by suhlman
How to resolve particular LNK2001 error?
|
|
[1 reply] : when compiling main.cpp you are seeing one declaration of .Connect(), ... (by ne555)
|
by landlord2017
Assign a result of a logic operation between Eigen/Dense arrays to a std::vector
|
|
[2 replies] Last: I have tried, but felt hard to read their documentations. I found Ei... (by landlord2017)
|
by technologist
dynamic char array size
|
|
[4 replies] Last: Or as Peter said use std::string instead: #include<iostream> #includ... (by technologist)
|
by Dimension10
make an object move from one space to another in a grid
|
|
[1 reply] : I would create a class Grid that encapsulates a two dimensional array ... (by Thomas1965)
|
by Calcushtag
Help me with Exceptions and improvement of class
|
|
[6 replies] Last: dhayden:...... ajith mk:...... I am coding just for fun for myself.... (by Calcushtag)
|
by rajhansk
how do they make softwares like blender etc?
|
|
[3 replies] Last: Yes, well, programs like Blender are rather math heavy and employ a lo... (by Duthomhas)
|
by Wu zhen hai
a template confuseness
|
|
[10 replies] Last: Can you trust others? I spend so long time just to transit a virus to... (by TheIdeasMan)
|
Dangling pointer? |
|
[1 reply] : You don't use pointers. You do use indices. (std::string has members o... (by keskiverto)
|
by JUAN DENT
How to create a member in the base class after the constructor of the subclass?
|
|
[2 replies] Last: Thanks! Yes, I think the book was not clear on it, because that's what... (by JUAN DENT)
|