by jjordan33
Dynamic String Array not Compiling
|
|
[4 replies] Last: >> dutch I got it! char** a = new char* ; for(int i = 0; i... (by jjordan33)
|
by joeboat
Swapping number question help
|
|
[5 replies] Last: No, you can't have several variables with the same name. double n1 wo... (by zapshe)
|
How to have a unique pointer with 32 byte aligned? |
|
[3 replies] Last: We thought make_unique could do the work (?) Can it? Mostly. When I... (by mbozzi)
|
by SparkXV
Need Approach with better time complexity? (1,2)
|
|
[30 replies] Last: my approach in, I think, O(n lg^3 n) (pseudocode) array a, b sorted_s... (by ne555)
|
by sarah1993
Choosing random numbers
|
|
[4 replies] Last: I would like to ask.. if i do rand()%4+3, it will select random number... (by jonnin)
|
by chinashieh
Need help for finding the solution and the code of exercise from the book c++ by dissection
|
|
[2 replies] Last: FWIW, the book is available here: https://doc.lagout.org/programmation... (by dhayden)
|
by kmce
Question from bjarne stroustrup programming principles and practice
|
|
[4 replies] Last: But I decided to try again, and not have the computer know the number... (by zapshe)
|
by PhysicsIsFun
Code simply stops randomly?
|
|
[17 replies] Last: And keeping a close eye on the weather forecast :P (by MikeyBoy)
|
by XboxOne2019
Writing 3 types of variables to a 1-D array
|
|
[12 replies] Last: I had to initialize my array to 0 to get it to work. Not sure why. ... (by MikeyBoy)
|
by jjordan33
Filling a new array of ints with part of a different array
|
|
[11 replies] Last: Okay, so it chips away at the string from the beginning by removing le... (by jjordan33)
|
by Usiminas
Access SQL Server witch c++.net
|
|
[3 replies] Last: Hello!! I'm create a program: #include "stdafx.h" #include "SQL_C++... (by Usiminas)
|
by jsmithplus
Calling srand each time before generating random numbers make it more or less random?
|
|
[12 replies] Last: It generates the seed (and initialises the random engine) only once; t... (by JLBorges)
|
by jjordan33
Possible to dynamically separate input?
|
|
[3 replies] Last: #include <iostream> #include <cctype> #include <string> #include <alg... (by lastchance)
|
by Gladys994
order of execution in an expression with commas in C++
|
|
[9 replies] Last: No, the OP just grabbed a random post from S.O. https://stackoverflow.... (by lastchance)
|
by m2020
Efficient way to covert a file to DAG
|
|
[11 replies] Last: Good catch. Sorry about that. (by dhayden)
|
by afSora
Pointers
|
|
[5 replies] Last: Thanks for explaining it, I understand it now. (by afSora)
|
int compare operator as a function |
|
[4 replies] Last: [quote=CakeByTheOcean]I want to get the int compare operator <, =, > a... (by lastchance)
|
isODDHigh Function |
|
[2 replies] Last: #include <climits> // return the largest even number in the array //... (by JLBorges)
|
by D40603874
Creating and ATM simulation
|
|
[7 replies] Last: double* ptrBalance; *ptrBalance += deposit; And what do you thin... (by MikeyBoy)
|
by Bobbysokhi
Functions & Selections
|
|
[1 reply] : Use a " do{....} while(score<50); " loop. (by Zaap)
|