
please wait
by ausairman
warning C4227: anachronism used : qualifiers on reference are ignored
|
So I get that error when I try to do this: typedef double const (*t_p_training_function)(std::vector<double> const&); // training function pointer type The ... |
Apr 4, 2013 at 12:50am
[4 replies] Last: My mistake, the error was cause on the line after that one... Sorry ... (by ausairman)
|
Need help with my homework. |
I get the following error in my switch within the operations function Error: more than one instance of overloaded function "multiplication" matches the argume... |
Apr 4, 2013 at 12:16am
[5 replies] Last: @ booradley60 thanks for the insight took a look at what I did and you... (by ejhernandez381)
|
by misssy
Printing in increasing order
|
I having trouble completing my output function. The directions I was given were to: create copy of the original array: in a for-loop copy the values fr... |
Apr 4, 2013 at 12:13am
[no replies]
|
by eagleman
pass vector to function?
|
Does anyone know how to make that work? #include <iostream> #include <vector> using namespace std; int isPrime (int a, vector c) { for (int b = 0... |
Apr 3, 2013 at 11:39pm
[2 replies] Last: Thanks. What does adding the const do? Because the program runs, and i... (by eagleman)
|
by jackbruns28
confusion on why the void function won't recognize my declared variables
|
So my code is as below. #include <iostream> #include <string> using namespace std; void display(); void display2(); int main() { char foote... |
Apr 3, 2013 at 11:02pm
[8 replies] Last: Yes, declaring the variables globally. Thank you. I never thought of... (by jackbruns28)
|
keypress in dialog form |
hi, I want to control robot, using keyboard, for example if I press s the robot will move forward, z will move backward. I use visual studio 2010, class l... |
Apr 3, 2013 at 10:35pm
[6 replies] Last: Thank you .. you solve my problem (by Daniel Sutopo)
|
by theascen
Need some polishing advice or direction on this project.
|
I used "//" needing attention and direction. This program will compile if anyone is interested in giving it a whirl. Any advice pertaining to my situation woul... |
Apr 3, 2013 at 10:35pm
[no replies]
|
by Shala
std::cin, std::cout, peek, ws
|
Im going through my class notes online and my professor talks about ws and peek but i don't exactly know what it means. to my understanding, its used with cin, ... |
Apr 3, 2013 at 9:58pm
[2 replies] Last: std::cout is for output (C++ OUTput) to the console window, like in th... (by LB)
|
by kjimenez
Arrays
|
18 E:\hw6aKJJ.cpp uninitialized const `array' //program will take a user inputed list of integer numbers and use three //function calls in order to find t... |
Apr 3, 2013 at 9:08pm
[1 reply] : The error tells you word for word what is wrong. You're declaring a c... (by booradley60)
|
by fiodis
Possible Memory Leak?
|
I've written a short, multi-source file program in native C++ using VS 2010 (I'm on Windows 7). I had to allocate some memory on the heap for an unsigned int a... |
Apr 3, 2013 at 8:59pm
[5 replies] Last: Sorry for all the walls of text, it's why I wasn't sure if I should po... (by fiodis)
|
by Daleth
Using getline properly
|
The following code works for half the time when getting user input. However, sometimes if the user presses enter without entering anything, the program crashes.... |
Apr 3, 2013 at 8:41pm
[7 replies] Last: I don't know of any problems other than not being able to use a custom... (by LB)
|
by robertdrums
Cout/Print
|
I'm new, I am using Dev-C++ as my compiler. My program is compiling but does stay on the screen, it just close right after I run it. How can I keep the window... |
Apr 3, 2013 at 8:31pm
[1 reply] : http://cplusplus.com/forum/beginner/1988/ (edit: at least you didn't ... (by Splux)
|
by graham terry
Converting a Variable from a BTYE type to a WORD type
|
First post on C++.com so apologies if this has been answered else-ware (I couldn't find any answers I understood/applied to me) or if this question is in the wr... |
Apr 3, 2013 at 7:47pm
[3 replies] Last: Thanks guys. The MAKEWORD macro worked really well (after I worked ou... (by graham terry)
|
by Austin J
Enums in function parameters
|
I'm trying to make a function that will take a enum from a class and set it equal to whatever I called in the function. I can't seem to get it to work though. ... |
Apr 3, 2013 at 7:45pm
[5 replies] Last: Thanks again! (by Austin J)
|
Arrays and Averaging |
I know what I need to do in this program, I just don't know how to do it. This program needs to show the the average of grades after the user decides what qu... |
Apr 3, 2013 at 7:11pm
[10 replies] Last: Thank you Jilb for all of the encouraging words. you helped me a lot..... (by redheadAlyssa)
|
by Awais Tahir
How TO Produce animal voices.. In c++ code
|
as we know about Beep(523,500); But How it will produce animal like horse voice |
Apr 3, 2013 at 7:00pm
[4 replies] Last: You'd need a library that supports sound output. You need to load the ... (by Bourgond Aries)
|
by Ardeshir81
How to generate random numbers using "random_device"?
|
HI! What is wrong with this piece of code : #include <random> #include <iostream> using namespace std ; int main () { random_device myrd ; ... |
Apr 3, 2013 at 6:50pm
[3 replies] Last: In Code::Blocks you go to settings -> compiler -> and you check the bo... (by Vidminas)
|
by SoapChicken
Delete last vector entry
|
Hello, How do I remove the last entry of an int vector? Thanks. |
Apr 3, 2013 at 6:43pm
[6 replies] Last: booradley60, thanks, I'll look for the problem in my code. (by SoapChicken)
|
by TripCode
What kind of degree should be taken?
|
Hello everyone, I have somewhat recently found an unfathomable interest in programming. I have bought a couple books to begin learning in C++ which is going pr... |
Apr 3, 2013 at 6:43pm
[3 replies] Last: Thanks for the reply Smac. I just needed to know if I HAVE TO take a g... (by TripCode)
|
by Pixlr
User inputs from cin inside if statement
|
Hello, I am trying to do user input where a user types in "d(i)" where 'i' is a variable when the user wants to delete the i-th element. In my if-statemen... |
Apr 3, 2013 at 6:26pm
[2 replies] Last: Hey, Thanks a bunch. It works, but I am having problems to detect inpu... (by Pixlr)
|