by devcppuser
exe screen cutting out too quick -- blank screen
|
Good evening, I am developing a project that is much bugger than this small portion from here. This... |
Nov 30, 2018 at 10:39pm
[1 reply] : I'm not exactly sure what's going on yet, so I'm just going to post so... (by Ganado)
|
by adam2016
I need serious help for C++ program :)
|
that is a pretty big first assignment almost feels overwhelming, what you may want to do is create ... |
Nov 30, 2018 at 10:21pm
[3 replies] Last: agreed Mikey,I honestly believe it should be a bannable offence. (by adam2016)
|
by adam2016
ints chars and doubles(primitive types)
|
Hi guys, although at this stage I don't really consider myself much of a beginner anymore,but I fee... |
Nov 30, 2018 at 10:07pm
[9 replies] Last: great insight,thanks guys! (by adam2016)
|
by hareleah
Temporary array creation error codes (const)
|
I get the error code that the expression must have a constant value, but this is a temporary array f... |
Nov 30, 2018 at 9:44pm
[3 replies] Last: Hello hareleah, Simple undeclared and undefined variables : int l, m... (by mycuser)
|
by chunsae1379
A question about const char and string literals
|
Hi, Korean c++ learner again. I feel like I'm getting a lot of help from this community after all. A... |
Nov 30, 2018 at 9:28pm
[3 replies] Last: Just further: The printing of a C string works because it is null ter... (by TheIdeasMan)
|
by johnb444
Tic Tac Toe Program not running
|
So I need to code a tic tac toe game for my assignment. The program doesn't require any complex comp... |
Nov 30, 2018 at 8:37pm
[2 replies] Last: Your code to check for a winner is wrong. Consider this loop from row... (by dhayden)
|
by FrenchTouch
Missing Element in Linked List
|
Hi ! As a school task I need to code a map template to make this main function work : #include ... |
Nov 30, 2018 at 8:25pm
[7 replies] Last: Thank you so much :) (by FrenchTouch)
|
by wubbits
Understanding pointers
|
So I am learning about pointers and I am currently reading my textbook. The textbook gave us this co... |
Nov 30, 2018 at 4:17pm
[10 replies] Last: Try this (the constexpr objects would typically be at a different area... (by JLBorges)
|
by onrszr15
serial and parallel bubble sort help me ? :)
|
friends, I need to find the differences between the serial and parallel version of the bubble sort s... |
Nov 30, 2018 at 3:10pm
[1 reply] : a parallel bubble sort is the most polished poo I have heard of to dat... (by jonnin)
|
by DellXT
Help! Inline assembler is not working
|
error: _asm was not declared in this scope #include <iostream> #include <iomanip> #include <... |
Nov 30, 2018 at 11:56am
[1 reply] : Take a look here: https://ibiblio.org/gferg/ldp/GCC-Inline-Assembly-H... (by coder777)
|
by redi
chess board
|
I need help how to create a chess board in c++ for beginners |
Nov 30, 2018 at 8:55am
[4 replies] Last: There are unicode characters for chess pieces Actually for test pu... (by mycuser)
|
for loop |
Hello! I've made this simple code, but am not sure where to go from here. int main() { int i; ... |
Nov 30, 2018 at 7:56am
[3 replies] Last: Well you're missing code tags, your code looks a mess. int main() { ... (by salem c)
|
by s505279186
Can someone briefly or clearly explain the logic in this code
|
if I want this function interlaceDigits(1357, 2468) prints 12345678 the code would be return 100 ... |
Nov 30, 2018 at 7:18am
[1 reply] : You have recursive functions. You do show only one line of the functio... (by keskiverto)
|
by enes12
i need help
|
how do I do '>' until you press the space i have not any idea javascript:tx('small') #include <ios... |
Nov 30, 2018 at 3:35am
[1 reply] : Hello enes12, Not sure what you mean by: how do I do '>' until you p... (by Handy Andy)
|
Output formatting |
If the user inputs 0 and 0, how can i get both "Weight must be greater than zero" and "We do not shi... |
Nov 30, 2018 at 3:18am
[2 replies] Last: Hello XxImaWafflexX, Just as I posted I noticed that lines 8 - 10 sho... (by Handy Andy)
|
by owmn
Highschool C++ Homework Assignment
|
Rational fractions are of the form a / b, in which a and b are integers and b ≠ 0. In this exercis... |
Nov 30, 2018 at 2:37am
[15 replies] Last: Thank you all very much for your help! My program is now working as it... (by owmn)
|
5 Errors Idk How To Fix With My Code |
I keep getting these 5 errors with my code: https://gyazo.com/15af6abfc873a620f93f39b767e58fb6 and... |
Nov 30, 2018 at 2:30am
[4 replies] Last: @jonnin Ahh okay. That's very helpful, thank you for the detailed resp... (by PiggiesGoSqueal)
|
by wirelesskill
Formatting help please
|
Hi all! I need some help with formatting. I cant seem to wrap my head around this issue.. Belo... |
Nov 30, 2018 at 12:47am
[1 reply] : in pseudocode header = 'Result = ' print(header, c ) for K in c[1:]: ... (by ne555)
|
by PixelT
How do i make this less bulky and difficult?
|
I'm working on a project for my school, and I just started with C++. This program is going to be us... |
Nov 29, 2018 at 10:03pm
[6 replies] Last: I started working with C++ less than a week ago, and truthfully, it's ... (by PixelT)
|
by vysero
trouble with std::vector
|
I have a variable declared as such: std::vector<DynamicSdmProtocol::DynamicSdm*> m_devices; ... |
Nov 29, 2018 at 8:22pm
[2 replies] Last: If you want a reference to the vector, std::vector<DynamicSdmProto... (by Ganado)
|