49,765 Topics

Member Avatar for
Member Avatar for Charlton21

I need to turn this code for a class that checks for a out-of-bound value: class array {public : int & operator [] (int); // Prototype; overloaded operator int size () // In-line function {return ub - lb + 1; }; int lbound () {return lb; }; int ubound () …

Member Avatar for Narue
0
305
Member Avatar for pawan_sharma777

Buddy , i have problem in to combine sql with c++ plzzz any one help for this issue hurry friends i have a library project to combine it with database. hellppppppppppp meeeeeeeeeeeeeeeee.............

Member Avatar for sheva249
-1
172
Member Avatar for cpp_learn

Hi, I need to do the following: 1. read the text file with names and surnames 2. convert each char to int than add them 3. the number must keep adding each other until it is under 10 This is what I have so far ====================================================================== #include <iostream> #include <fstream> …

Member Avatar for jonsca
0
566
Member Avatar for Kamal_Java

HI I have a Map Image that I got from OpenstreetMap(Osmarender Image ) .My question is how to convert geographic coordinates to the co-ordinates of my picture (that is in pixels on X and Y on a picture). That is I receive geographic coordinates and it is necessary for me …

Member Avatar for jonsca
0
115
Member Avatar for ahtaniv

Hello all, My understanding is that the Objects created are stored in the heap segment. What if the objects are created for a class with static data members? Do the static data alone reside in the data segment, while the rest of the members are allocated on the heap? I …

Member Avatar for ahtaniv
0
371
Member Avatar for EneilShade

I was humming along, and decided to try out data sorting. So, I did a few pieces of research, and came up with a really cool looking algorithm: Quicksort. I did what I should have, and started to program. Now, here is where I sound like an idiot: Why is …

Member Avatar for EneilShade
0
222
Member Avatar for winky

I am trying to make an ATM machine, while trying to teach myself how classes interact with each other. I feel as though the main idea of the program is correct, but as you can see, I am having a lot of syntax errors. If you guys see something that …

Member Avatar for chrjs
-2
3K
Member Avatar for amanoob

Generate the multiplication table for n numbers up to k terms( nested loops). Hint : 1 2 3 4 5 …. K 2 4 6 8 10 …..2*k ……………….. ……………….. n ……………….. nK give me the code in c++

Member Avatar for pseudorandom21
-7
237
Member Avatar for twsmale

Okay, so I've been searching the internet for hours trying to find the solution to my problem. Many came close, but didn't describe exactly what I want to do. I have an excel file that displays the names, locations and other information about certain servers for work. I want to …

Member Avatar for twsmale
0
146
Member Avatar for daviddoria

What I really wanted was a single class, ImageSegmentation<T> that operates on images of type T. The problem was that this object needed to be a member of my Qt form object (called Form), but I didn't know T until runtime (the user selects which type of image to operate …

Member Avatar for mike_2000_17
0
240
Member Avatar for Kaushalya

Hi all, I have following string 0x0002,A5651QPR87GBZ094RTF52,D,A,000001,ABC ,10000.00 , EOT i need to split the above using ',' as the delimiter & put those in to the following string variables. 1.Command 2.Key 3.Msgtype 4.number 5.name 6.amount pls reply me as sap. Regards

Member Avatar for zwatsu13
0
14K
Member Avatar for chaosgeneration

I have an assignment to show a brute force algorithm on combination and permutations. All I am given is the function headers, and I cannot see the main. I'm having trouble understanding how sets work... Here is my header function for combination [code=c++]set< set<char> > powerSet(set<char S>)[/code] now, I'm not …

Member Avatar for pseudorandom21
0
170
Member Avatar for chaosgeneration

Hello, I'm working on a function that is supposed to impose brute force algorithm on a set of chars. Here is what I have so far [CODE]set<string> permutation(set<char>S) { set<string> fun; string myString; do{ for(set<char>::iterator it=S.begin(); it !=S.end(); ++it){ myString += *it; } fun.insert(myString); }while(next_permutation(S.begin(), S.end())); return fun; }[/CODE] due …

0
49
Member Avatar for Phinocio

I have this code here [code]#include <iostream> using namespace std; int checkLevel(){ int exp[101]={0,1,6,21,51,100,172,274,409,583,800,1064,1382,1757,2195,2700,3276,3930,4665,5487,6400,7408,8518,9733,11059,12500,14060,15746,17561,19511,21600,23832,26214,28749,31443, 34300,37324,40522,43897,47455,51200,55136,59270,63605,68147,72900,77868,83058,88473,94119,100000,106121,112486,119102,125971,133100,140493,148154,156090,164303,172800,181585,190662,200038, 209715,219700,229997,240610,251546,262807,274400,286329,298598,311214,324179,337500,351181,365226,379642,394431,409600,425153,441094,457430,474163,491300,508845,526802,545178,563975,583200, 602857,622950,643486,664467,685900,707789,730138,752954,776239,800000}; int level = 1; int nextLevel = 2; int PokemonExp = 0; int input; int num = 1; while (num == 1){ cout << "Enter exp amount: "; cin >> input; PokemonExp = …

Member Avatar for Phinocio
0
144
Member Avatar for KazenoZ

Hello, Once more, I'm having a problem which I've been breaking my head about for a few hours searching Google to no avail, and came here again for some consult about. The thing is this; I have an image file, the size of 16x16 pixels, and I want to paint …

Member Avatar for jonsca
0
694
Member Avatar for Hayzam_#include

Hi Everone, I need Help With My code If there is any mistake Please Let me Know I will correct it it is a ping program it will ping an ip address or an address like [url]www.daniweb.com[/url] [CODE]#include <windows.h> #include <iostream> #include <conio.h> using namespace std; int main() { int …

Member Avatar for pseudorandom21
0
148
Member Avatar for JordanHam

I do not know if I should use a 2D or just two seperate arrays to make this easier. I have two arrays. One is just an array like {1,2,3,4...n} and the other has values that correspond to those and make pairs. I want to create an array that stores …

Member Avatar for JordanHam
0
201
Member Avatar for tudorH

Hi guys, I am new to C++ and am trying to display the contents of an array in the form of {1,2,3,4} but am having some difficulties, they get printed but there is a trailing comma {1,2,3,4,}....how can I get rid of this? this is my code: [CODE]cout << "\nArray: …

Member Avatar for ravenous
0
92
Member Avatar for RobZombie85

hi is there anybody that can help on Havok Physics engine. I want to implement havoks physics into a racing game, at the moment iam keeping it very basic , havok aside i have my car model with joining wheel nodes and body node and a floor for it to …

0
111
Member Avatar for RobZombie85

Hi Iam running into a problem when using classes and inheritance. I have a base class which contains a member function whos job it is to create and intialize some variables that are shared between other classes. The other classes are inherited from the base class and the variables are …

Member Avatar for Narue
0
151
Member Avatar for Nandomo

The code works, I just want to see if someone can help me cut lines in main only. [CODE]#include <iostream> #include <sstream> #include <windows.h> #include <time.h> #include <string> using namespace std; struct tm * timeinfo; // Holds information about time in form of struct class Date { public: int m_nMonth; …

Member Avatar for ravenous
0
361
Member Avatar for sowjanya.y
Member Avatar for elsiekins

Hi, i have: [CODE]string letter; cout << ">Please enter a letter: \n>"; getline(cin, letter);[/CODE] What i am trying to work out is how to restrict the user for only entering one letter - has to use a string due to being used in a function later which only takes a …

Member Avatar for elsiekins
0
174
Member Avatar for fars
Member Avatar for jkoske

This is giving me a segmentation fault in the noBucket() function. I don't see why. Does it having something to do with it being a const function? My other accessor functions are working fine and they are declared exactly the same with just a different name. The files are longer …

Member Avatar for jkoske
0
215
Member Avatar for eduard77

I have a vector that with your help I succeeded to make it work just fine. Now I want to make the same vector to work with float values but just doesn't want to make me the mathematics with float numbers. Is adding only the integers and not the float …

Member Avatar for eduard77
0
110
Member Avatar for SacredFootball

Hey all. I'm trying to learn stack operations and so far, I believe I've gotten push() and pop() down. I seem to be stuck on copy, however. I cannot get a check for empty to work correctly. [CODE] typedef struct _node { payload data; struct _node *prev; } node; int …

Member Avatar for jonsca
0
97
Member Avatar for Armistice

So i'm not looking for anyone to give me code on how to do this. I would just like a tip or two. I have a .txt file with a deck of cards in it saved into a card struct like : [CODE]struct card { char suit; char value; };[/CODE] …

Member Avatar for Armistice
0
352
Member Avatar for iwannalearn

i want to make some graphical programs in DEV C++,plz name some libraries of DEV C++ for making graphical libraries????

Member Avatar for Aranarth
0
76
Member Avatar for ahtaniv

[CODE]class A { public: int a; A() : a(100) { } }; class B : public A { public: int b; B() : b(200){ } }; int main() { A a; B *ptrB =(B*)&a; cout<<ptrB->b<<endl; // Is there a way to get this to print 200?? }[/CODE]

Member Avatar for ahtaniv
0
276

The End.