by Jason112
Creating a Min and Max, question
|
|
[4 replies] Last: Float, I just figured everything out, thank you everyone (by Jason112)
|
by StaticAce
Why does 3%100 work.
|
|
[1 reply] : a % b is simply the remainder of the integer division a / b. The remai... (by helios)
|
by neguse
Why does new int[x] disappear after leaving func scope?
|
|
[14 replies] Last: Thank you everyone for all your help. It has been a great help, I have... (by neguse)
|
by Lastprince00
short sample only
|
|
[4 replies] Last: Sorry .. i think C++ and Java They are same.. but they are not they sa... (by Lastprince00)
|
by Hay9
Instance object of a class
|
|
[2 replies] Last: thanks (by Hay9)
|
by Hoangnguyen
hello everyone in community
|
|
[1 reply] : Hello. You should put stuff like this in the Lounge. You can move... (by Duthomhas)
|
by anarelle
variable scope
|
|
[3 replies] Last: So my first question is: on the second example, is variable a still a... (by dhayden)
|
by orcusb
Still not getting pointers
|
|
[5 replies] Last: Some people insist having vectors store pointers, without realizing th... (by jonnin)
|
by hydrelaps
Error: cannot convert 'std::__cxx11::string {aka std::__cxx11::basic_string<char>}' to 'char*'
|
|
[3 replies] Last: https://linux.die.net/man/3/dirname char* ExePath(){ static char b... (by ne555)
|
by lost110
Adding right diagonals of 2 matrices
|
|
[1 reply] : > and return that array to main functions using pointer. Well you don'... (by salem c)
|
by Missiepooh
Blackjack game
|
|
[4 replies] Last: player_card2 == 10|11|12|13; error: suggest parentheses around co... (by Thomas Huxhorn)
|
by tidematic
How to search a 2d array? 4 by 4 matrix
|
|
[6 replies] Last: #include <iostream> #include <core/util/ArrayND.hpp> int main() { ... (by Thomas Huxhorn)
|
by leelion
specifying faces which have a common edge
|
|
[4 replies] Last: http://www.cplusplus.com/reference/string/string/find/ and it's variat... (by salem c)
|
by catsonmars
Creating a vector that holds objects
|
|
[2 replies] Last: Better instrumentation would help. #include<iostream> #include<vecto... (by salem c)
|
by Cazards
Question on input stream
|
|
[1 reply] : T F d) The state of an input stream can be tested as a true or false ... (by coder777)
|
Sort a vector of strings |
|
[1 reply] : Yes. (by George PlusPlus)
|
by AL88
Why is my deep copy not working?
|
|
[2 replies] Last: Thanks. (by AL88)
|
by lost110
Need help in Merging two linked lists alternatively
|
|
[3 replies] Last: Use parameters as Salem C suggested in your other post. Line 90: x ... (by dhayden)
|
by lost110
Adding polynomial equation using linked lists
|
|
[2 replies] Last: A linked list is a bad way to store a polynomial: - adding to the tail... (by dhayden)
|
by lost110
finding the time complexity
|
|
[2 replies] Last: This is a nice problem. Here is my 10 cent take on it. outer loop is... (by jonnin)
|