
please wait
void * |
SOO FRUSTATING, im still a beginner, can anyone explain me how these codes work? #include <iostream> using namespace std; void cg(int * a, int * b, int * c); ... |
Dec 17, 2015 at 9:52pm
[3 replies] Last: Whoever gave you this code should be tossed into a woodchipper. Look a... (by booradley60)
|
Ways to Lower CPU Usage |
Hey, all. Same project I've been working on. It works nicely, does what I want it to. However, being a real-time application, a lot of the time it spends... |
Dec 17, 2015 at 9:11pm
[6 replies] Last: You're totally right. I went about the design wrong. Thankfully, I fou... (by JayhawkZombie)
|
by Yektakhalili
I don't understand a couple of things : Can you please explain some of these to me?
|
System ("cls") //I know that it cleans, and it's used in Windows, but what exactly does it do, and what library should be included for it, if any? //RELATE... |
Dec 17, 2015 at 7:14pm
[1 reply] : typedef: Those who use typedef use it to simplify things. Imagine a d... (by tipaye)
|
by AmmmG 01
Quick Question in Linked List
|
Could someone see why my check bigger doesn't work? In a sense that if I say 2000 - 4000 it works, but if the first number is bigger (4000 - 2000) it doesn't w... |
Dec 17, 2015 at 6:24pm
[5 replies] Last: [quote=kkhalaf]Don't add my code to yours, change yours to look like m... (by cire)
|
by Rxit
Fixing lower upper case to lower case.
|
Hello guys, so Im a begginer and i study C++ in my school. So I have a homework that is about making a C++ program that calls function which fixes the first 2 l... |
Dec 17, 2015 at 4:21pm
[2 replies] Last: I see you're already using toupper(), well check out the functions isl... (by tipaye)
|
by kkhalaf
Simple 2-D Neuron Network to be used in Image Processing
|
Excuse my long post. This is so important and joyful for me and I will appreciate any help. I am researching 2-D Neuron Networks and I really like it ! 2-D Neu... |
Dec 17, 2015 at 4:12pm
[4 replies] Last: Hi naraku I hope you are doing fine. Sure. Here is my backProb() and ... (by kkhalaf)
|
by GTHell
Is Data structure part of the Computer Science class?
|
My college teach Data Structure + Math + C++ which is all related and I wonder if it's part of the Computer Science. I'm studying MIS = Management Informatio... |
Dec 17, 2015 at 4:04pm
[5 replies] Last: In reality, it depends on the class and what topics will be covered. S... (by JayhawkZombie)
|
by bonho
latency for posting to io_service
|
Hi, I have a boost::asio::io_service running in a separate thread, and I want to run some async functions in the background without stalling the main thread. ... |
Dec 17, 2015 at 2:18pm
[2 replies] Last: This is just a guess, but it might also be that the first call to io.p... (by dhayden)
|
Help with implementing HTTP Queries in C++ |
I was wondering how would someone implement a listener for GET and POST in a c++ program. For example: GET http://1.2.3.4:5678/action?message=helpme and ... |
Dec 17, 2015 at 2:07pm
[3 replies] Last: You may take a look at POCO: http://pocoproject.org/ http://pocoproje... (by coder777)
|
by turtlesavage
Why is this giving me a value of 1?
|
std::cout << (1/1) + (1/2) + (1/3) + (1/4) + (1/5) << std::endl ; |
Dec 17, 2015 at 11:39am
[4 replies] Last: Dividing two integers will give you an integer in C++. The first term ... (by Peter87)
|
by espionage1
Reading Arrays + Multiplication.
|
#include <iostream> #include <fstream> using namespace std; ifstream datain ("Walnut_High_School"); int main(){ int count = 0, player_number , weig... |
Dec 17, 2015 at 3:32am
[1 reply] : Anyone want to help on this? (by espionage1)
|
by schowdhury12
finding sum of dynamic array in a separate function
|
Can someone please help me debug this code? I've been stuck on this since yesterday. The assignment calls for user to enter any amount of data, then program wil... |
Dec 17, 2015 at 2:21am
[6 replies] Last: You're right the problem was with the semicolon, sorry I never really ... (by schowdhury12)
|
by rekrap99
Queue data structure assignment
|
This assignment wants me to create a Queue data structure using a LinkedList data structure we used in class. Here is the assignment: 1. Implement the Queue d... |
Dec 16, 2015 at 9:31pm
[1 reply] : Use the code tags, please. Queue<int> * q1 = new Queue<int>(); Queu... (by JayhawkZombie)
|
Aid in completing the code |
Hello Everyone, This is my first time posting to the forums so please let me know if I have made an mistakes. I am having an issue completing an assignment t... |
Dec 16, 2015 at 7:11pm
[6 replies] Last: for the SortFunction, it's simply finding the smallest in the whole ar... (by kkhalaf)
|
by mohamedsul
Queue Implementation Program Break Point Error
|
I Have Implemented Abstract DataType Queue But There Is A Problem With Display Function I Can not UnderStand What Is That Error "Break Point" Please Help ... |
Dec 16, 2015 at 5:24pm
[10 replies] Last: Dont Talk Like That To Me :( :( Really Iv'e done this code by my sel... (by mohamedsul)
|
by pacman169
Surprising output
|
Hello, I get this output when trying to run this program: ./token char **argv syntax error c: c syntax error c: c syntax error c: c Why is that... |
Dec 16, 2015 at 4:53pm
[no replies]
|
by vuhln
Link static library into dynamic library
|
Hi pro, I have a trouble when compile wrapper of cpgf is bellows: #ifndef REFLECTION_WRAPPER_CLASS_H_ #define REFLECTION_WRAPPER_CLASS_H_ #include "cpgf/g... |
Dec 16, 2015 at 1:45pm
[1 reply] : fatal error C1083: Cannot open include file: 'cpgf/gmetadefine.h': N... (by kbw)
|
by frummel
orange numbers
|
How do I format my numbers to be the same as all the others? I'm in Notepad ++ with language C++ and Encode in ANSI. Most of my numbers are orange. I'm try... |
Dec 16, 2015 at 9:14am
[5 replies] Last: Yes. I said "no other IDE" because I wasn't sure if Notepad++ qualifie... (by Peter87)
|
by alex067
Linked List Questions
|
I have several problems with my code here: #include <iostream> #include <fstream> #include <string> using namespace std; const string text = "Save.t... |
Dec 16, 2015 at 8:06am
[8 replies] Last: man so many dumb mistakes... thank you (by alex067)
|
Message relay |
Hey guys. At work we have a system that will send needed files to other computers, but I creates a big popup and requires a lan connection. I was wondering if i... |
Dec 16, 2015 at 5:23am
[1 reply] : There are probably thousands of programs to do that already. Your not ... (by SamuelAdams)
|