49,757 Topics

Member Avatar for
Member Avatar for kylcrow

Ok so I am looking to read in a bunch of different types of data for a program, but I am having trouble doing so in a very robust way. For strings it's easy. [CODE=C++] string temp; getline(cin, temp); [/CODE] Simple and quite robust. For the rest I am having …

Member Avatar for Ancient Dragon
0
75
Member Avatar for hacker9801

Hey. I want to make a packet structure, something like [code=c++]struct Packet { int cmd; /* command */ int len; /* length of body */ char body[30]; /* body (should be length of len though, might use std::string) */ };[/code] Now, if I recieve some data thru a socket (I'm …

Member Avatar for hacker9801
0
107
Member Avatar for tones1986

Hey guys and girls. I am working on a project that needs to use templates. My professor didnt go over teh use of them in class, nor is our book very descriptive of them. Im assuming they are way easier than i make them seem, but some help , tips, …

Member Avatar for Lerner
0
144
Member Avatar for h0neydip

[code= cplusplus] struct wheel_node { int contents; wheel_node* next; }; typedef wheel_node* wheel_ptr; class wheel { private: wheel_ptr arrow; public: wheel (); void print (); void spin (int distance); void move_to (int number); }; [/code] The constructor wheel creates a circular linked list as follows: arrow -> 5 -> 40 …

Member Avatar for Lerner
0
140
Member Avatar for buddha527

I have the following code but every time I go to compile it i get the same 3 errors and do not know why I am getting them. I have tried googling why but can't really understand any explanations that I am given and therefore cannot fix the errors. Any …

Member Avatar for buddha527
0
98
Member Avatar for vesper967

Does anyone know a good site that gives source code of the implementation of a Splay tree with the balancing of the AVL tree?

Member Avatar for Salem
0
72
Member Avatar for Nemoticchigga

I am receiving over ethernet into a 'char messageBuffer[512]' and then passing it on by a function call to 'process((char*) messageBuffer)' then in process: [CODE] void process(char* theMessage) { myStruct messageBuffer; memcpy(&myStruct, &theMessage, sizeof(theMessage)); //this line is wrong } [/CODE] Im not sure how to properly put it back into …

Member Avatar for Nemoticchigga
0
61
Member Avatar for joshmo

Hey guys...i had an assignment i did last year and i had a problem linking the my files since the program was modularized..the lecturer accepted it with the errors since she also failed to figure it out..anyway i was scrolling through my work and today and i saw the code …

Member Avatar for joshmo
0
143
Member Avatar for Black Magic

Hey, i have made this little guessing game and was wondering how i could clear the screen every time to ask the question if the guess is wrong, though keeping line's 15 and 17 displayer all the time, i've tried but got msessed up programs etc, please help me adjust …

Member Avatar for joshmo
0
92
Member Avatar for cloudjc

[CODE]Hi Im completely new to programming and was wondering if anyone would be willing to help me with this exercise in C++. I have absolutely no idea how to do this exercise: ----------------------------------------------- Rational.h is a C++ header file which declares a class (Rational) which handles Rational numbers (i.e. fractions). …

Member Avatar for Ancient Dragon
0
428
Member Avatar for dinozulf

can anyone please help me with my program, my hand in date is on monday so i really need some help thank you

Member Avatar for Salem
0
164
Member Avatar for computers08

[code] int doubles (int d); int minimum (int m, int n); int oddEven (int a); int main () { int num, i, sum=0, num1, num2; for (i=0; i<5; i++) { cout<<"please enter a number. "; cin>>num; cout<<endl; sum= sum + num; } cout<<"the numbers added together is "<<sum<<endl; cout<<"the sum …

Member Avatar for Salem
0
93
Member Avatar for demroth

I have been reading older C programs to try and understand how to convert them to C++. One particular line of code still confuses me however. fscanf(fin, "%d", &n) I understand that fscanf reads from the stream (the file pointed to by fin), it reads the data which will be …

Member Avatar for demroth
0
147
Member Avatar for mbarriault

I'm trying to implement a very simple networking solution in C++. I've found a couple guides, but they all go far above and beyond what I actually need to do, so I figured I'd ask. I need to connect two computers. One computer will be broadcasting a (changing) integer on …

Member Avatar for Ancient Dragon
0
75
Member Avatar for Croft .L

Hi all! I just want to know a website or book that will start me with c++ programming. I have downloaded Microsoft c++ toolkit 1.01 2003 to start from so i have the place to start :!: Thanks!

Member Avatar for joshmo
0
129
Member Avatar for nurulshidanoni

How to do a selection sort? Which I want to sort in descending order this data 1 50 2 90 3 40

Member Avatar for Laiq Ahmed
0
86
Member Avatar for Cosa

I am trying to now multiply matrices stored in 2d arrays. When the program runs i get segmentation fault, using DDD i found the point where it stops after 3 loops. [code] int i,j,k; float** matrixc = new float*[rows]; if (matrixc != NULL) { for (int x = 0; x …

Member Avatar for Cosa
0
110
Member Avatar for qq9000

#include <iostream> using namespace std; int main() { const int NUM_NAMES = 20, Size = 17; char names[NUM_NAMES] [SIZE] = {"lonney, Bill", "travis, Jim", "Harrison, Bob", "Holland, Beth"}; i need a simple program that uses the selectionSort function so it searches an array of strings instead of an array of …

Member Avatar for Nick Evan
0
79
Member Avatar for Adrian99420

Hi, I created 3 combobox: comboBox1, comboBox2 and comboBox3. I wish to select the require combobox according to different case. I tried to use comboBo(i) but it return me error.For example, [code] for (int i=0; i=3;i++) { textBox1->Text=comboBox(i)->SelectedItem->ToString(); } [/code] The code return me error on selecting "comboBox(i)". I knew …

Member Avatar for Nick Evan
0
73
Member Avatar for Icetigris

I'm trying to write a data structure for a basic 3D engine, but for some reason it always crashes when I try to add an index to the polygon vector. Anyone know what may be going on? Thanks [code] #include <iostream> #include <string> #include <iterator> #include <vector> #include <gl/glut.h> #include …

Member Avatar for Laiq Ahmed
0
104
Member Avatar for chunalt787

I am trying to add sound into a whack a mole game for my C++ 101 class. I found this code on the internet [code]PlaySound("woofwoof.wav",NULL,SND_NODEFAULT);[/code] to add code and have it work the site says this: "It's defined in <mmsystem.h> and you have to link with winmm.lib." What does it …

Member Avatar for chunalt787
0
79
Member Avatar for David Wang

A simple array: int array[3]={1,2,3}; In GUI, I want to make the picturebox a element of an array, like: XXX array[3]={pictureBox1, pictureBox2, pictureBox3}; so what is "XXX"? By doing this I would like to control whether a pictureBox is visible or not, but the picturebox number depends on a changing …

0
60
Member Avatar for nurulshidanoni

How to declare the array and read the array? Must I use data structure? [U]Two array[/U] 1 30 2 20 3 10 4 50 5 15

Member Avatar for nurulshidanoni
0
102
Member Avatar for jimJohnson

I am writing a function and need to calculate the median...I am gonna b honest I absolutely have no idea how to start this but it is pretty much one of the last things I need to do with my program. Any advice would br greatly appreciated..... [code=c++] #include <iostream> …

Member Avatar for Ancient Dragon
0
226
Member Avatar for dpfaff

I cant figure out how to fix the errors in this prooram. Any help would be great. [CODE=cplusplus] // date: April 25, 2008 // username: dpfaff #include <cstring> #include <fstream> #include <iomanip> #include <cstdlib> #include <iostream> using namespace std; const int MAXCHARS = 25; const int MAXSIZE = 6; typedef …

Member Avatar for Ancient Dragon
0
131
Member Avatar for marti3a3

I'm trying to implement a menu choice, so the user can define what kind of triangle they have, with the focus on class implementation. I'm trying to define a class attribute that offers the choices, but then depending on the choice, sends the compiler to the appropriate attribute. Example: [CODE]int …

Member Avatar for marti3a3
0
147
Member Avatar for Adrian99420

hi, I link up a combobox item with a MS access database by setting the data source and display member of combobox properties. However, I wish to filter some repeated item in the combobox, how can I do that? For example, my MS access table contain value as follow: profile …

Member Avatar for Ancient Dragon
0
135
Member Avatar for Designer_101

Hi Im currently a web designer, but i want to get to grips with software development aswell. Could anyone tell me what i need to get started. For example -Software -Usfull tutorials -Testing Pods (if you use them?) Anything like that would be of great use. Thanks

Member Avatar for Ancient Dragon
0
53
Member Avatar for TriTz

Hi! guys! I have a question about generic linked list. This is an example using C. [code] typedef struct list{ void *info; struct list *next; } List; [/code] but now I have to translate it to C++, but I must use template instead of void*. [code] template <class T> class …

Member Avatar for Narue
0
190
Member Avatar for Black Magic

Hey, I have noticed when you use srand or rand you write: [CODE=C++]rand() % 99 + 1[/CODE] I was wondering about the 1, is it just tradition to use it or is it from 1-99? Just because i was wondering how i could make it between say 20 and 40 …

Member Avatar for CoolGamer48
0
85

The End.