49,766 Topics

Member Avatar for
Member Avatar for ila_asia

hye..can somebody help me with these problems as soon as possible?? really need your guys help Create a phone book program that allows users to enter names and phone numbers of friends and acquaintances. Create a structure to hold contact information .The user should be able to add phone book …

Member Avatar for adityatandon
0
205
Member Avatar for kkevinnnn

Well anybody pls try this: i will give an address that is 0xB8000 Now u write a function in which we can write a string and define its colour so you write the string in that memory area and increment it, and again write the colour info in that area …

Member Avatar for gusano79
0
163
Member Avatar for fmasroor

This is a strange question, but it's very frustrating to me. In microsoft visual c++, when I open a cpp file, I can not compile it. Is there a specific way to open the file so that I can run it after opening? Thanks.

Member Avatar for NP-complete
0
97
Member Avatar for gopal1993

Hello all, Actually i had a program which i was unable to solve i hope youll help me out and post your solutions. The program is: A Bowler is called the Best, if the average wickets taken by him during the year is 5 and above. The number of matches …

Member Avatar for tkud
0
86
Member Avatar for namelyia

[CODE]/********************************************** Complete the class "Musician" to produce the following output: Name = PK. Genre = Jazz Name = LG. Genre = Pop *********************************************************/ #include <iostream> #include <string> using namespace std; class Human { string name; public: Human (string name) : name(name) { } string getName() { return name; } }; …

Member Avatar for VernonDozier
0
97
Member Avatar for simptive

I am figuring out game development and deciding whether i should develop a game as a final project of grduation. Although i learnt c++, C#, Java etc. but I didn't covered any specific course/subject in my academics for game development. I love Games but I am completely a newbie in …

Member Avatar for sross
0
189
Member Avatar for khelly

[CODE]#include<iostream> #include<fstream> #include<string> #include<vector> #include<algorithm> using std::cin; using std::cout; using std::string; // clothing codes struct codes { char code; const char* explanation_1; float total_sales; }; codes CODES[]={'A',"BABY WEAR",0.0F, 'B',"CHILDREN WEAR",0.0F, 'C',"LADIES WEAR",0.0F, 'D',"MENSWEAR",0.0F, 0,NULL,0.0F }; struct RECORD { char category; int item_number; float price; }; const string filename="jualan.dat"; int menu(); …

Member Avatar for khelly
0
120
Member Avatar for ben1996123

I want to start learning OpenGL. Codeblocks decided to break, so I downloaded Dev-C++ instead. I've tried loads of different websites to try and figure out how to install it, and I get some type of error every time. How should I install it with dev-c++?

Member Avatar for ben1996123
0
102
Member Avatar for Nicker

Hello, See the picture: [url]http://img513.imageshack.us/img513/7496/errorps.png[/url] See the code: [CODE] #include <windows.h> #include <stdio.h> bool stamina=false; void LosHacks() { while(1){ if(GetAsyncKeyState(VK_F6) &1){ //F6 stamina = !stamina; } if(stamina==true){ DWORD dwPlayerPointer = *(DWORD*)0x00F37074; if(dwPlayerPointer != 0) *(float*)(dwPlayerPointer + 0x10 + 0x2C) = 100; } Sleep(50); } } BOOL WINAPI DllMain(HINSTANCE module, DWORD …

0
43
Member Avatar for mrnobody

Hi guys, I've been struggling for days to do this. I've got 2 form. The first form (Form1) is to assign a variable (Result) a value. Another form (DisplayResult) is to display out the value. Actually, my purpose is to learn how i can use global variables to share information …

Member Avatar for mrnobody
0
246
Member Avatar for dakerao

How do I stop this from happening in SDL [URL="http://i.imgur.com/D6M2X.png"]http://i.imgur.com/D6M2X.png[/URL] where the background just stops. I want it to carry on too the left for ever or atleast the width of the image on the SDL_Surface here is a video to showcase the problem [URL="http://www.youtube.com/watch?v=KROV7eq8RLo"]http://www.youtube.com/watch?v=KROV7eq8RLo[/URL] and here is the code …

Member Avatar for sfuo
0
147
Member Avatar for sheennave

Hye all; I want dataReader to read int values into integer variables. Which conversion do i need. Please help?? [CODE] while(reader->Read()) { temp_string = reader["ID_varchar"]->ToString(); // OK } [/CODE] What about code below ? [CODE] while(reader->Read()) { temp_int = reader["ID_int"]->GetInt32(); // ERROR } [/CODE]

Member Avatar for thines01
0
46
Member Avatar for pseudorandom21

I've been fiddling with some boost spirit stuff, and my code seems to start infinitely looping somewhere in the standard library stuff. Any ideas what's wrong? The qi::phrase_parse works very well, but the karma gets me. [code] #include <iostream> #include <string> #include <vector> #include <algorithm> //#include <boost/spirit.hpp> #include <boost/spirit/include/qi.hpp> #include …

Member Avatar for mike_2000_17
0
188
Member Avatar for Vasthor

Hi guys, again, coming to this forum for asking some confirmation of my knowledge confusion. firstly, let's take a look on the code:- [CODE] #include <iostream> using std::cout; using std::endl; int main() { // main process const int value_1 = 1000; const int *pointer_1 = &value_1; const int **pointer_2 = …

Member Avatar for Narue
0
2K
Member Avatar for deanus

Hi, I've just learned that Java's 'protected' access specifier has a different effect than that in C++. So is there a way to make a member of a base class visible to its inheritors but not globally? Dean

Member Avatar for deanus
0
106
Member Avatar for jayjey

I don't understand what is wrong with this. This is the line with the error: `}while(playAgian());` Thank you :) #include <iostream> #include <string> class Ice { public: void hit(int playerLoco, int iceStrenth, int loco1, int loco2, int loco3); int strenth; class Loco { public: int location; bool hit; }; }; …

Member Avatar for gevorg1808
0
199
Member Avatar for Smartflight

Hi, I'm learning C/C++ at school and we have our vacations; thought I might do some programs on my own. I've landed at trouble with sorting numbers in a 1-D array at the time of insertion. It seems to work up to a certain point, after which it fails to …

Member Avatar for Smartflight
0
356
Member Avatar for epicbeast9022

Hello everybody I [I]thought[/I] I understood inheritance but it turns out I don't. I am creating an SDL/OpenGL mini-GUI library. I have a master class, GUIComponent, with subclasses such as TextLabel under it. I have a vector called guiList that is initialized as [ICODE]std::vector<GUIUnit*> guiList[/ICODE] (it's extern'd and initialized elsewhere; …

Member Avatar for vijayan121
0
174
Member Avatar for floatingDivs

Hey everyone (especially Narue!), I've ventured over to the C++ board again. I've been reading my C++ book (Data Structures and Algorithms in C++) again and want to fully grasp the concept of pointers. In the back of each chapter, a couple of exercises are available and I'm attempting to …

Member Avatar for floatingDivs
0
718
Member Avatar for ThomsonGB

Okay - Now I am beginning to get a bit frustrated. I have a project that builds perfectly and I just want to duplicate it so I create a new project with the new name that I want to call it. When It shows me the empty space to start …

Member Avatar for ThomsonGB
0
493
Member Avatar for Srinivas0

write a program to accept the salaries of 10 employees from the user and display them in descending order for all the employees,if the user enters zero, the program should display the message"the amount should be greater than zero" and accept the value again. [CODE]#include <iostream> using namespace std; class …

Member Avatar for Srinivas0
1
541
Member Avatar for khelly

so, this is my coding. [code]#include<iostream.h> #include<fstream.h> #include<stdlib.h> #include<iomanip.h> using std::cout; using std::cin; using std::endl; struct menu typedef struct menu RECORD; void addRecord(RECORD input[], int arraycounter); void printRecord( input[]); void printAllRecord( input[]); int main() { fstream submit; submit.open("D:jualan.dat",ios::out); { int menuEnter; int arraycounter=0; do { cout<<"\tFamily Outfit Shop"<<endl; cout<<"\t MAIN …

Member Avatar for khelly
0
371
Member Avatar for pspwxp fan

K. I've put up with this issue for long enough and have decided to solve it once and for all. Halp? For those who dont know what i'm talking about, its the damned VC++ error "Resource file *.ico is not in valid 3.00 format" ^^headache. Googling doesn't help. I made …

Member Avatar for pspwxp fan
0
1K
Member Avatar for konic2

Hi There, here is tricky (for me) issue: 1. Windows 7, SP1. 2. I have lots of C++ redistributales in C:\Wimdows\winsxs like 'x86_microsoft.vc80..' and 'x86_microsoft.vc90..'. So I do have them installed but when I check if I have them 'legally' installed using all possible uninstallers including native one I do …

Member Avatar for konic2
0
211
Member Avatar for swagen

hi , can anyone provide the code of insertion ,deletion, search of AVL ?? sorry, im still bigginer in c++ language.. Thanks

Member Avatar for Narue
0
64
Member Avatar for adil.h

After figuring out my past problem (no instance of an overloaded function), I've come across another problem. [IMG]http://i.imgur.com/SvX1l.png[/IMG] I've pinpointed the code where I know the error is originating from: [code] static int Decode_VL64(const std::string &data){ char* chars = (char*)data.c_str(); return Decode_VL64(data); } [/code] What I'm trying to do here …

Member Avatar for Moschops
0
803
Member Avatar for Srinivas0

create a menu driven application that accepts the salaries for ten employees and display the following information: 1)max salary 2)min salary 3)avg salary 4)number of employees whos salary is greater than 1000 5)the salaries in ascending and descending orders. [CODE]#include <iostream> using namespace std; class Max { int marks[10]; public: …

Member Avatar for Srinivas0
0
214
Member Avatar for n0de

Hi, not so much into software design patterns [further - SDP], so while learning this "thing" i have some issues with trying to combine multiple SDP. I think that there are some logical issues.. Thank you for your time! :) [CODE] #include <iostream> using namespace std; /*the Command interface*/ class …

Member Avatar for n0de
0
152
Member Avatar for burcinerek

problem: five students pick five balls, but they must not choose the same ball this program does not work i dont know what is wrong. [CODE]#include <cstdlib> #include <iostream> #include <stdio.h> #include <conio.h> using namespace std; int main(int argc, char *argv[]) { int i; int student[5] = {0}; int ball[6] …

Member Avatar for vijayan121
0
282
Member Avatar for shakeel3442

I Wanted to create a Live Audio Broadcaster by which i can transmit Audio from a local computer to a webserver . Which all programming languages can be used to make it and how can i make it . Any Help will be Appreciated .

0
85

The End.