by ragecoder
Trouble using std::unique_ptr
|
|
[7 replies] Last: @Mats, Hey it worked just dandy, I knew it was up to date but for some... (by ragecoder)
|
by Free Radical
A dynamic array objects in a class
|
|
[3 replies] Last: Okay, then you'll have to do it yourself manually.... class Account ... (by long double main)
|
by pilotnate
problem getting my classes to work
|
|
[2 replies] Last: solved thank you (by pilotnate)
|
I need Help here |
|
[12 replies] Last: Here I could fix it, A digital clock. #include<iostream> #include<wi... (by alirezahusainy786)
|
by fapyfapy
Want my function to move string from one array to another
|
|
[4 replies] Last: There's already something for that in C++. std::set. (by S G H)
|
by micros24
How to get the number of letters of inputted words?
|
|
[2 replies] Last: Still doesn't work... //To initialize to 0 for(int i=0; i <= 100; i... (by micros24)
|
by broski83
Move items between arrays and vectors
|
|
[8 replies] Last: I don't really know what motivates it. I wonder if it's students bein... (by MikeyBoy)
|
by harraz94
always compile previous file
|
|
[1 reply] : What are you using to compile? What are you using to run? (by ValliusDax)
|
by kmtompkins
computer info
|
|
[3 replies] Last: There is no standard way of doing this from C++, this is a function th... (by ValliusDax)
|
by jva2794
emptying an int array
|
|
[6 replies] Last: Hi @jva2794 The arrays you are using will be texts? If yes, then if ... (by Jecs9)
|
by Code4Swag
College C++ Student w/questions
|
|
[3 replies] Last: Well, I design computer chips for a living, so I always approach codin... (by ValliusDax)
|
by wsuwarrior
Need direction with fstream project
|
|
[2 replies] Last: I agree with Smac89 a little... You could use >> and try to match up ... (by ValliusDax)
|
urgently need help trying to get this equation to work in c++? |
|
[9 replies] Last: @xsimn, And he takes a bow. ;~) (by ValliusDax)
|
by miamidawgs
warnings and segmentation fault
|
|
[10 replies] Last: argv , like cire and I were discussing. Also, your else block has no b... (by ValliusDax)
|
by btbtbt
(data structure) sorting algorithm
|
|
[2 replies] Last: I'll try it, thank you. (by btbtbt)
|
by sweetest85
Program to evaluate a polynomial function
|
|
[1 reply] : int *c = new int ; //i=0 here for(i = 0; i <= d; i++) ... (by ne555)
|
Pointers, Loops, Array combo |
|
[1 reply] : int* ps = 0; salary = *ps; it should be : int* ps = salary // ps... (by nvrmnd)
|
by Huppa
Sentinel Value & Float Variables
|
|
[2 replies] Last: Thank you very much. (by Huppa)
|
by cozier
Passing by reference, stuck.
|
|
[1 reply] : a and b are integers, so a/b does integer division. Cast one to a floa... (by Zhuge)
|
by ccdare
Question about bound template friend of template class.
|
|
[5 replies] Last: > the instantiation inside the class is this format: > friend void sh... (by JLBorges)
|