49,765 Topics
![]() | |
Hi I am making a roman numeral to decimal converter, I have the decimal to roman numeral converter but I am having trouble doing it from roman to decimal. How do you pull a string apart letter by letter; eg VXI, into 3 variables a= V, b= X, c= I. … | |
Write a function that takes as an argument a two-dimensional array with 9 lines and 9 columns (with integer elements), and verifies if the matrix contains a valid Sudoku solution. | |
I almost have my overloaded += operator working. I just need some help polishing it. My problem is that if I put one list as +4x^4 and the other list as +3x^3+2x^2 then the list stays stuck on the first term of the first list. Can anyone throw me a … | |
Hi, I have to use fscanf to read the numbers in a line. The line is in the file "FileName1" and may or may not have EOF. I am using the following code and it is stuck in an infinite loop. [ICODE] FILE *Fileget; vector<int> get_value; Fileget = fopen(FileName1, "r"); … | |
I have created an application in Visual C++ 2008 Express Edition. What I want do do now is to create a [B]setup.exe [/B]file out of this. How could this be possible to do ? Thank you... | |
I have a program that uses http to send information to a remote server... should i be worried about bandwidth if it sends one http packet per player? basically when a person finishes a game it send a http packet with their info.... if there are 60 people connected and … | |
I have programatically created a test.txt file in the LocalApplicationData folder on the computer. Now I test if I can find that file with the below code and it works. The file do exist. What I have found is that the file should be in this directory ? [B]LocalApplicationData C:\Documents … | |
Hello, I am having problem to define a constuctor of a class with private member which is also of a const type. When I try to compile it complains that the const members do not have initalized data. Hmm, anyway it works fine if I remove const. However is it … | |
hellooo..... i wrote this code.. which is a part of a bigger code... i have done this using structs.. now i have to do it with class but i dont know much about classes need help urgently..... :( [code=cplusplus] #include<iostream> #include<fstream> using namespace std; class cell { bool visited; cell … | |
Hi, I want to Creation a algorithm?? I have customer 1 customer 2 customer 3 order of customer 1 Item quantity item1 10 item2 2 item3 3 Vendor1 Amount on order Item quantity cost total home-deliver item1 10 50 500 100 item2 2 40 80 item3 3 40 120 Vendor2 … | |
Hi I'm doing a project for school and I'm stuck on this particular function, whenever it runs the test I get this error: [CODE]malloc(): memory corruption (fast): 0x0981f018 ***[/CODE] here is what i have so far: [CODE] string& string::operator+=(char ch) { _size += 1; if(_capacity <= _size){ (*this).increase_capacity(1); } _data[_size … | |
# include <iostream> using namespace std; int main() { char places[3][11]={"London", "Birmingham", "Glasgow"}; char *p; cout<<places[2]<<endl; p=places[0]; cout<<p<<endl; cout<< &p[2]<< endl; <------ cout<< p[11]<< endl; <------- return 0; } the output is the following Glasgow London ndon B what i dont get is how the 3rd and 4th output line … | |
Hey, I'm new to win32 and basically, I want to create a program that reads commands from a text file and then does the command. So, say if I wanted to write some text on an application window, i'd just have to write: [CODE] lable.caption huuhaa [/CODE] I have done, … | |
![]() | Hi all! I'm trying to implement a small program to test an API I've been provided, and since it's my first approach to C++ under Windows, I could use some help. I have this type definition: [CODE=CPP]typedef struct { const WCHAR* streetAddress; const WCHAR* city; const WCHAR* state; const WCHAR* … |
[code] struct players { string team_name; string driver; string navigator; double best_time; } world[32]; [/code] I am generating random values for the best time and using a bubble sort in ascending order for the best time. See below. How do I sort for best time but retain my team name, … | |
Hai sairam to all I want a small halp I have a class called thread that has pthread_create inside the constructor and has member function as its start function (using the concept of function pointer) I just dont know ---- Is it correct Please do justify it with a small … | |
I was just wondering how I would go about finding a mode of a [U]un[/U]sorted array. I know that if it's sorted I can pass data into a 2 dimensional array and find the largest count. I tried to write some code counting the first value, but it ends up … | |
Hi all I am trying to make a little program that when you type in a number (anydigit) it will search the xml file and display the results in a text box, i have found some code that i would like to modify, the code here has no option to … ![]() | |
Hi, everyone. Well, I have a problem. There's a class A with a member int a, and don't know any other information about A. Now there's an object MA of A, but I just know the address of MA.a, how can I get the address of MA? Thanks a lot. | |
I need some advice from people who know what they're are talking about. The question I am struggling with is below and my attempt is below that. Can you tell where I'm going wrong? Thanks. I'm trying to acheive this: (A) Read the first name and the surname of a … | |
Hello there. I'm having a problem with a linker error. I am trying to compile a project (just a hobby). It manages to compile, but I get a link error when trying to link. I don't see anything wrong with the code at all. I am using Dev-C++. This is … | |
[CODE]#include <iostream> #include <fstream> using namespace std; void PrintError(fstream&, char, bool&); int Conversion(fstream&, char&, bool&); int main() { fstream InFile; char Bit; int Decimal; bool BadBit = false; //Open file to read InFile.open("f:\\Binary.txt",ios::in); //Read the first bit of the number InFile.get(Bit); //continue reading all numbers till the end of file … | |
hi, if I had: [code=C++] char* arr; [/code] and want to add character one by one into [B]arr[/B]. How could I? I don't wanna use vectors! thanks | |
Hi guys, any help appreciated here. This is what I have so far. [CODE]int getDaysBetweenDates(int day, int month, int year, int day2, int month2, int year2) { if(isFirstDateGreaterThanSecond(int month1, int day1, int year1, int month2, int day2, int year2)) { return getDaysBetweenDates(month2, day2, year2, month1, day1, year1) } else if(year1 … | |
I'm going to be working on a summer research project with my college's robotics team. My task is going to be to develop a program to communicate with the robot via 802.11g. I would really like to stick to straight C++, and if I can't then C# is also an … | |
this is giving me an error at the line that says loc = (zip.find("605", 0)); can't tell why?!? [CODE]void calcShippingCharge(string zip, int RATE605, int RATE606, int &chg) { //search zip code for proper prefix int loc = 0; loc = (zip.find("606", 0)); if (loc >= 0) chg = RATE606; else … | |
Hey everybody, I am trying to initialize a deck of cards using a structured data type. Here is the currently relevant portions of the code: [code] struct ACard { int Num; char Pic; }; void InitiateCard(ACard Card[]) { for (int i =0; i < 13; i++) { Card[i].Num = i; … | |
What will be the code for not overwriting the text file you make. [code]ofstream myfile; myfile.open (home/.test.txt); myfile << "test"; myfile.close(); [/code] Because the test.txt is needed to create only just once after you load the widget. I inserted that code to the mainWindow but whenever I loaded the mainWindow … | |
Im having this exception when i use the class vector: [code] vector <int64> p; dsdriver::EngineAdmin ea; p= ea.getEngineIds(); [/code] And EngineAdmin is: [code] class DSUTIL_EXPORT EngineAdmin { public: static vector<int64> getEngineIds() ; [/code] When i use p=ea.getengineIds(); its throw me an exception in xmemory: [code] void deallocate(pointer _Ptr, size_type) { … | |
I have a very hard programming challenge and i need help... I have nothing so far, so im hoping somebod could help me build it... Im to write a program that uses a structure to store student name, student ID number, pointer to and array of test scores, average test … |
The End.