49,757 Topics

Member Avatar for
Member Avatar for ankit_the_hawk

I have been trying to concatenate two strings declared in the form of pointers i.e. [CODE] char* chars; [/CODE] But the program crashes... Here is the code: [CODE] char *chars1="ankit"; char *chars2="sameer"; char *temp; int i; for(i=0;i<len;i++) { temp[i] = chars1[i]; } for(int j=0;j<len2;j++) { temp[i] = chars2[j]; i++; } …

Member Avatar for Ancient Dragon
0
100
Member Avatar for Phan

Hey, everyone, I am another student seeking help for a programming class. What I am having trouble with specifically is reading from a file. The program itself involves entering in some store products with information such as: product name, product ID, etc. After everything is entered, the program is supposed …

Member Avatar for vmanes
0
105
Member Avatar for nilesh03

My problem is that i've got an input file which contains information about universities, contains string, integer, floating points types also... Here is the first three lines of the file, how could i for example sort it by institution name?? Each column is separated by the tab character... Please help …

Member Avatar for Ancient Dragon
0
106
Member Avatar for M1A1

fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory I'm using Visual C++ 2005 with MSDN. Can anyone help me figure out the problem? [code] Build Log Build started: Project: Login Server, Configuration: Debug|Win32 Command Lines Creating temporary file "c:\Documents and Settings\Matt\Desktop\eROSE2\Login Server\Debug\RSP00000160004664.rsp" with contents [ …

Member Avatar for Darkkal
0
250
Member Avatar for gazoo

I have this little program that assign seat for ailine passenger, it's work, but I want to add so that it display the name of (passenger = seat number) so far I only got it to display the passenger name in the spot of that seat number. I try set_num …

Member Avatar for gazoo
0
218
Member Avatar for Nimz

hi every1 i also need help with my assignment im supposed to find the errors and explain how to correct it heres the program: //question 3a [code=cplusplus] #include <iostream> using namespace std; int main ( ) { int nrLuggagepieces; float mass, total mass; int averageMass; // initialize totalMass = 0; …

Member Avatar for joshmo
0
99
Member Avatar for jimJohnson

I am working on a program with function files and I am not sure how to ask this so this might be kind of interesting. We were given an input file that I saved to my desktop. This is all I did with it and I am not sure if …

Member Avatar for jimJohnson
0
140
Member Avatar for flash121

Hello, Lets say i have an edit control in my program. When i run the program i can write some text in it. How can i save/convert the text that was written in the control to a CString variable ?(it should be "saved" by clicking on a button)

Member Avatar for mitrmkar
0
2K
Member Avatar for Gondt

the title describes the problem. here's how the code looks like: [code]#include <cstdio> class example { public: class node { public: int value; node *left, *right; }; node *root; example (int a) { root=new node; root->value=a; } // HERE'S THE PROBLEM: void function (node *variable=root) { } }; int main() …

Member Avatar for Gondt
0
226
Member Avatar for Bellerofont

I'm new in assembly and was trying to get this program to work, it supposed to calculate the square root of any integer but i don't know how to load the ax into stack, get the square root and return the value to the c++ variable, that was the closest …

Member Avatar for Bellerofont
0
162
Member Avatar for georgioue

Guys hello, i`m a new member here [IMG]http://images.devshed.com/fda/smilies/smile.gif[/IMG] Hello to everybody...I need urgently help... I have an assignment for C++. "We have a collection of emails. This collection has emails from Linguist.org, these mails are legal. these are in a file called ling_filenames.txt. We also have a collection of spam …

Member Avatar for Ancient Dragon
0
142
Member Avatar for savinki

i want to convert char array element into hexadecimal value. But the code i wrote is not giving the output as i expect. [code] unsigned char in[256]; void Text(const char *Buffer) { static char tempValue[256]; for(int i=0;i<=len;i++) { sprintf(&tempValue[i],"%02x", (unsigned char)Buffer[i]); in[i]=(unsigned char)tempValue[i]; cout<<"HexaValue"<<in[i]; } } [/code] this is not …

Member Avatar for Ancient Dragon
0
132
Member Avatar for saswatdash83

Can anybody tell that when Inline won't work though we have declared function as inline. i.e code replacement won't take place .

Member Avatar for Ancient Dragon
0
102
Member Avatar for avi1109

Hello, i'm stuck with a problem on binary search. I need to compare a string with an array of type string. It is changing the position from which the string should be read but z compare is not successful. here's my code. Any help would be appreciated. thanks in advance. …

Member Avatar for Ancient Dragon
0
135
Member Avatar for anerchy

i just wanted to make a program which reads 5 numbers then writes this 5 number. that's it but i couldn't. something's wrong and i couldnt find what is it. #include <stdio.h> void fun1(void) { int a=0,b=5,c=0; int d[5]; for(a=0;a<b;a++) { printf("%d\n",d[a]); } } int main() { printf("enter 5 numbers"); …

Member Avatar for anerchy
0
103
Member Avatar for superC

Hello! I need a help. I've got to make a program with insert and search function and I have to use to following. To create a database in which I will implement insert and search The part of code is given: [code] #ifndef CONTAINER_H #define CONTAINER_H #include <iostream> #include <string> …

Member Avatar for Ancient Dragon
0
106
Member Avatar for super star 90

please help to with this program by mainly using arrays and pointers ,... i need this program to check 2 matrix files "if they contain any character and if they contain cout<<"invalid"; " and to open them from .txt file Help with Code Tags cplusplus Syntax (Toggle Plain Text) [code] …

Member Avatar for Ancient Dragon
0
70
Member Avatar for agrawalashishku

Hello, Attached are two codes. Please compile them and check the output. The question I have is that I am unable to understand why is it that the memory location allocated to tempmemcheck are 8bytes + the last memory location and not 4 bytes plus the last memory location. Similarly, …

Member Avatar for Ancient Dragon
0
116
Member Avatar for Beagle

Hi folks, I'm just learning C++ (using Borland C++ Builder) and I am having difficulty reading data from a text file created in Excel. I am trying to read the data into vectors which I can then use in a model that I am building. The problem is that I …

Member Avatar for Beagle
0
115
Member Avatar for kartouss

Hello, I have a function which calculates time for a specific operation and prints the time... However i want to call the time in another function and display its value... The code is as follows:- [code=c++]int encrypt() { double encryptTime,Add,sub,sft,mix; // add + sub + sft + mix calculations encryptTime …

Member Avatar for kartouss
0
236
Member Avatar for light_handle

Can anyone please tell me how to store contents of a text file after reading it into a 1D array buffer and then accessing each separate element of the paragraph? Please help

Member Avatar for Ancient Dragon
0
85
Member Avatar for sjcomp

Hello, I have a statically linked library, which I'd like to convert to dynamically linked one. For that I'd have to export symbols. My question is what symbols should I export in case of the interfaces. Here is an example [CODE=C++] // ----- IA.h // Interface class class IA{ static …

Member Avatar for Ancient Dragon
0
172
Member Avatar for obsolucity

I'm not really sure how to go about implementing these functions in my queue, any help is greatly appreciated! Edit: I just realized, I also have no idea where to start for the copy constructor [code=cplusplus] #include <iostream> using namespace std; template<class ItemType> class Queue { private: int front; int …

0
66
Member Avatar for r30028

I'm having some trouble with dynamic memory allocation of a struct. The struct looks like this: [CODE]struct J { int w; int s; };[/CODE] During the execution of the program, the following line of code results in a crash, which when debugging was because of std::bad_alloc, which does not make …

Member Avatar for Salem
0
69
Member Avatar for Roebuc

Just a quick question, I am working with classes and I was trying to rename one as an array, ie: [code] addressType addresses[n];[/code] But I have decided not to make it an array. So is this a legal statement? [code] addressType addresses;[/code] Or does that only work for arrays? Thanks

Member Avatar for Roebuc
0
92
Member Avatar for Black Magic

Hey, i was just messing around and made a calculator and was just wondering if there was a way i could make it shorter? I'm not really bothered i just want to know? [CODE]#include <iostream> #include <conio.h> using namespace std; int main() { system("TITLE My Calculator Program."); system("COLOR 4"); double …

Member Avatar for Black Magic
0
140
Member Avatar for NinjaLink

My goal is to write a problem that will read in a length in feet and inches and output the equivalent length in meters and centimeters. As noted, There are 0.3048 meters in a foot, 100 centimeters in a meter, and 12 inches in a foot. I am only having …

Member Avatar for NinjaLink
0
135
Member Avatar for Black Magic

Just editing my calculator and looking at what functions math.h had and i came across pow, My program compiles and things like that so no error but if I'm not mistaken the answer is wrong. 6 ^ 1 = 6X6? = 36 (IS THAT CORRECT??) JUST IN MY PROGRAM IF …

Member Avatar for Black Magic
0
227
Member Avatar for followgoat

Hi, I am in an intro to C++ class, and need help with a homework. The below question requires us to allocate seats in the House for each state according to how large its population is. The entire problem is given all the way below. I have 2 queries: 1) …

Member Avatar for VernonDozier
0
84
Member Avatar for VernonDozier

Hi all, I am trying to install MySQL++ on Windows XP and use it. I was able to install it in Linux because the website: [url]http://tangentsoft.net/mysql++/[/url] provided an RPM that built the libraries for you. As far as I can tell, no such thing is supplied for Windows. Supposedly, MySQL++ …

Member Avatar for VernonDozier
0
295

The End.