
please wait
by Syvel
Initializing Vectors
|
Im trying to use a variable vector array for a variable amount of classes. I cant seem to initialize any of the vectors variables. Is there a better way to make... |
Sep 24, 2018 at 10:38pm
[2 replies] Last: Oh. Thanks. (by Syvel)
|
by gdubbb21
calculating pi
|
i need help creating a program to calculate pi, been at it all weekend, i am stumped man // Program Template #include <iostream> using namespace std; ... |
Sep 24, 2018 at 9:56pm
[2 replies] Last: desk check, debugger step-by-step, diagram flow... [code firstline=50]... (by ne555)
|
by fedegp
Vector of objects with different member functions?
|
Hi all, I'm writing here because I have a problem with objects with different member functions. #include "stdafx.h" #include <iostream> #include <string> #inc... |
Sep 24, 2018 at 8:59pm
[8 replies] Last: [quote=fedegp]Do you know a way to use a variabile number of inouts im... (by lastchance)
|
by lol2020
hi
|
can i switch bit |
Sep 24, 2018 at 7:07pm
[7 replies] Last: Somehow I think his username says it all. (by lastchance)
|
by syndicate
PROGRAM WEIRD EXIT.
|
I'm new to programming on a whole and im stuck on a weird place where my program just exits when it reaches a part of it. The .h and main file will be in the r... |
Sep 24, 2018 at 3:39pm
[8 replies] Last: You should store the dates with numbers. Convert to words when you ou... (by dhayden)
|
by nearc
doubly Linked list print
|
I have no idea why this code doesn't print backwards. If I create list with these numbers 12345. normal forwards function prints(12345) while bakwards one pri... |
Sep 24, 2018 at 3:19pm
[5 replies] Last: How could tail point to the last node, if there is already node tail->... (by keskiverto)
|
by DellXT
Program needs to be changed a little...
|
Hi, everyone! I've code of universal Turing machine. It needs to be changed into parallel Turing machine. How should I do it? https://pastebin.com/nBJt8GSd |
Sep 24, 2018 at 3:08pm
[3 replies] Last: So... read the answers that have been given in that thread. Take the ... (by MikeyBoy)
|
by ulthirai
Need help with Input/Output/Functions
|
Hi! I've recently started my Program Structure & Design class and my class has been learning how to use C++. We're doing an assignment where we have to write a ... |
Sep 24, 2018 at 3:06pm
[3 replies] Last: > That's why you're getting strange numbers; those numbers are memory... (by JLBorges)
|
by zfighter18
Trivia Program Project
|
Hello, I am very, very new to programming (as in I just started my very first class on the topic 2 weeks ago) and I have been floundering for the past two weeks... |
Sep 24, 2018 at 3:06pm
[2 replies] Last: Declare and initialize (i.e. create and assign values for) variables/... (by MikeyBoy)
|
by angeles1migs
Machine Problem for school activity
|
Write your question here. Greetings! I am student taking up a course in c++ programming, and i have an activity where in i need to solve this problem : Wr... |
Sep 24, 2018 at 11:56am
[6 replies] Last: Hello angeles1migs, You are welcome. If there is anything else I can ... (by Handy Andy)
|
by sean4fsu777
Recreating a Function to Reflect Passing Two Arrays
|
Hello, I have an assignment for my Intermediate C++ programming class that is coming due very soon. I searched the C++ Forum here, and Googled help with t... |
Sep 24, 2018 at 9:56am
[2 replies] Last: Thank you coder777. Do you have any suggestions on how to reflect the... (by sean4fsu777)
|
by Lilil
Help with arrays.
|
Hello, I have asked a similar question earlier but I was seeing if this code is right or not. Seeing this makes a bit sense to me from my research however, for ... |
Sep 24, 2018 at 5:18am
[1 reply] : Why are you return ing ... from main() ... on line 19? You might conc... (by lastchance)
|
by kikiyox77
try and catch exception.
|
I am trying to do a try and catch, but I keep on getting an error for some reason. The error I am getting is the Debug Assertion Failed. I am trying to loop thr... |
Sep 24, 2018 at 12:32am
[2 replies] Last: #include <iostream> #include <stdexcept> #include <string> #include <... (by mbozzi)
|
by talemache
Assertion failure
|
Hey again, Been awhile since I posted here but I am back again with another question. I have an assertion failure in a bigint project that I cannot figure out.... |
Sep 23, 2018 at 8:39pm
[8 replies] Last: I see, so it is giving me a remainder of 0. I will try to figure out h... (by talemache)
|
by mondixon
Holding NUL char
|
Hello again guys So what I'm trying to achieve is next: - Read file for certain number of bytes until EOF - Convert each chunk to hexadecimal using functio... |
Sep 23, 2018 at 8:25pm
[1 reply] : strlen reads the string until it reaches null. You should put the siz... (by poteto)
|
by DellXT
Compiler errors
|
I've downloaded coniow files and the compiler still shows some errors in the code. I guess it's about text coloring. How should I fix it? https://pastebin.com/... |
Sep 23, 2018 at 5:48pm
[2 replies] Last: Hello DellXT, I did get the program to run to a point. The first scre... (by Handy Andy)
|
by abeabukwaik
How do I get the rows and colums to show specific values (not part of calculation)
|
Hi guys! New to the forums here. I am working on a C++ project and have been stuck on two parts: 1. Can someone help me understand why my setprecision is not... |
Sep 23, 2018 at 2:59pm
[3 replies] Last: Awesome. Thank you Handy Andy and JLBorges. This has been very helpful... (by abeabukwaik)
|
Fibonacci number |
Write a program that will display the nth Fibonacci number. Create a function that will generate the nth Fibonacci number. Fibonacci numbers are numbers from th... |
Sep 23, 2018 at 2:45pm
[17 replies] Last: Agreed: recursion takes for ever here. I think there are quite big - a... (by lastchance)
|
Declared variable in header file causes a C4430 error |
I have a header file called "Engine.h", and a cpp file "Engine.cpp", i declare a variable that is type of a struct/class (doesn't matter at the moment), then i ... |
Sep 23, 2018 at 2:21pm
[5 replies] Last: Fixed it, both of your solutions work, thanks. (by closed account jNUpSL3A)
|
by nearc
Doubly linked list question
|
Can someone explain this part to me? 1. double_llist() { start = NULL; } what does it do? why it doesn't start with void? 2. doubl... |
Sep 23, 2018 at 2:13pm
[4 replies] Last: The loop at lines 135 and 136 moves s down until it points to the last... (by dhayden)
|