49,761 Topics

Member Avatar for
Member Avatar for scantraXx-

[CODE] if (user_input == 1) { dict.open("dict.txt"); cout << "Enter word "; cin >> word_check; toLower(word_check); vector<string> lines; string line; if (dict.is_open()) // if the dictionary is open { while (getline(dict,line)) { lines.push_back(line); } if (binarySearch(lines, lines.size(), word_check) != -1) { cout << word_check << " is in dictionary" << …

Member Avatar for tux4life
0
194
Member Avatar for basketball4567

I need to read information from a text file into a struct array. Im writing a program to make a list of favorites that the user will input. When they close the program, the array will write to a file. The next time the program is ran, i need to …

Member Avatar for Ancient Dragon
0
487
Member Avatar for johndory

Hello, I was wondering if there is a tutorial on binomial heaps on this site. if not, i would appreciate it if someone can post any links that are helpful on binomial heaps. All the text books i have do not have anything on binomial heaps. some do not even …

Member Avatar for jainrani
0
138
Member Avatar for plongx211

hi, can you help me in making my program ,employee log system program and it is password protected program ^_^ .....

Member Avatar for tux4life
0
102
Member Avatar for DavidDan

Hello! First post so I'd like to say hello to everyone :) So I've got this code here, I am very new to C++ and going through the basics, and I am creating a program that will tell the user when he/she is born. So the user puts his/her age …

Member Avatar for tux4life
1
224
Member Avatar for seakayaker

I wonder if anyone knows how I can call a function if a document of my type is double clicked to launch my application? I have made my document types associated with my application but it only launches my program when those are double clicked. I want to read in …

Member Avatar for Ancient Dragon
0
94
Member Avatar for bernadlosini

question given like this The Fibonacci sequence is the series of numbers 0, 1, 1, 2, 3, 5, 8, .... Formally, it can be expressed as: f ib0 = 0 f ib1 = 1 f ibn = f ibn−1 + f ibn−2 1) Write a C program using the fork() …

Member Avatar for namasteall2000
0
418
Member Avatar for power_computer

/facepalm Ok, so I have to make a program upon startup it has to read from a said file which looks something like this Song Name Artist Genre Track Time That is one block of the array, their is a max of 10. Ive been googling and searching the forums …

Member Avatar for cgeier
0
193
Member Avatar for infinity16

[I]<< Forked from [url]http://www.daniweb.com/forums/thread40942.html[/url] >>[/I] [QUOTE=Narue;196586]>But after printing the last word, it just hangs like as if expecting another string too. Probably because it's expecting another string. A newline is whitespace too, and unless you're terminating the loop with Ctrl+Z (or a read error occurs), it'll just keep asking you …

Member Avatar for mrnutty
0
102
Member Avatar for bynaridoom

Ok, what I'm trying to do is have the user enter a command at the prompt, and on the right command a function is called. Here's my code: [CODE]#include <iostream> #include <stdlib.h> void functionCall() { std::cout << "function successfully called"; } int main() { char userInput [128]; std::cin.getline(userInput, 128); std::cout …

Member Avatar for bynaridoom
0
123
Member Avatar for ellla

typedef std::list<list*> List; Can you tell me how to enter inside the list,if I want to know number of contacts which it consists..

Member Avatar for mrnutty
-1
133
Member Avatar for krayzeeben

Hi, i've had experience making counting programs in the iostream and now i'd like to make something useful to me. I play a web browser-based game called Neopets, and i often refresh 500 times a day there to encounter random events. Eventually, my hand gets tired, so i'd rather make …

Member Avatar for Tigran
0
1K
Member Avatar for SkiesBblue

Hi experts, Why does line [B]parts = new Tire*[numOfParts];[/B] generate the error [B]invalid conversion from `Tire**' to `CarPart**' [/B] in file car.cpp? The program works if I change the variable parts to be of type Tire** instead of CarPart**. I formatted my problem to a complete simple (though multifile) program, …

Member Avatar for SkiesBblue
0
1K
Member Avatar for vvinayk

Hi, I am getting errors with RTTI. In this program I have an Abstract base class with virtual function area() and two derived classes. I defined a polymorphic function and passed the derived object as argument to it which has reference to the base class as argument. I used typeid …

Member Avatar for kvprajapati
1
117
Member Avatar for Ali22615

I have this homework that i have to write the cxx of a header file. i started the homework but i got stuck in the meddle of it. I tried to find the abs_minimum function but it's too complicated because i have to keep track of the numbers and find …

Member Avatar for Ali22615
0
2K
Member Avatar for xfreebornx

[CODE]#include <iostream> using namespace std; struct student { int ID; char name[80]; char nationality[80]; char gender[2]; }; void insert(student array[]); void sort(student array[]); int main() { student array[100]; int answer; cout <<"Welcome to student recording system"<<endl; cout <<"Please choose one of the following option"<<endl; cout <<"1.Insert new record"<<endl; cout <<"2.Delete …

Member Avatar for xfreebornx
0
540
Member Avatar for gretty

hello I have some code that loops & takes in a number then should store it in an array. [B]My problem[/B] is that for some reason, the program only stores every 2nd number entered? [CODE=cplusplus] while (!cin.fail() && cin>>purchase) { // while a correct input is input cin >> purchase; …

Member Avatar for gretty
0
135
Member Avatar for vijay4vin

i get a debug assertion failure when i call a text file in v c ++. how to solve the error actually. it states debug assertion failure fseeki64.c line 61 stream !=null.

Member Avatar for Salem
0
92
Member Avatar for gretty

hello I have some errors in my program, which as always have to do with how to correctly syntax something :P ... I think :) [B]1st issue:[/B] I am using a 2d array as a parameter in a function but I am getting an error. I think it has to …

Member Avatar for Salem
0
139
Member Avatar for BlackPhoenix

I tried my hand at C++ client/server programs, but they were extremely difficult, even with the "best tutorial" on the Web (Beej's). I could get a basic client/server program going, but it was with "blocking sockets", and all I knew how to do was get the server to send a …

Member Avatar for VernonDozier
0
856
Member Avatar for Awebb999

I have to write code to shift all the values in the array to the right of position P, one place to the left. I can make up my own array and position P. would this code work? for (j=6; j>1;j--) { x[j-1]=x[j]; }

Member Avatar for mrnutty
0
83
Member Avatar for Hawkpath

Hello, I need help with the following code: [CODE] #include <windows.h> #include <tlhelp32.h> #include <conio.h> #include <stdlib.h> #include <iostream> bool ChangeMemVal(const char * ProcessName, LPVOID MemAddress, int NewVal, int size); int main() { printf("=== Pinball Trainer Example. Made by Hawkpath ===\n\n"); if(ChangeMemVal("pinball.exe", (void*) 0x000F4240, 1000000, 4)) printf("The score has been …

0
68
Member Avatar for BlackPhoenix

Let me explain myself, and then hopefully you can tell me a better solution. I have paid web hosting (only $2.50/mo) and in the process of learning PHP, have learned how to work with MySQL databases. I was wondering if it is possible to create a program in C++ that …

Member Avatar for BlackPhoenix
0
206
Member Avatar for tomtetlaw

THEY'RE ANNOYING! :@ This is my code: lang.h [code=c++] #pragma once #define _ASM_START namespace _TomAsm{ #define _ASM_END } #define cpp_asm _TomAsm #define _main int main(){ #define _endmain } _ASM_START template<typename _T> struct _Reg{ _T val; _Reg(_T _Val):val(_Val){} }; typedef _Reg<int> _IntReg; typedef _Reg<char> _CharReg; typedef _Reg<float> _FloatReg; typedef _Reg<double> _DoubleReg; …

Member Avatar for tomtetlaw
0
260
Member Avatar for azjherben

I'm getting inoput from a binary file, in hex. And I want it to say the first nine characters... like "0x05 0x53,0x84 " ... and so on. So how do I turn a char in hex to a string in text?

Member Avatar for mrnutty
0
290
Member Avatar for AceiferMaximus

I am getting an Illegal Indirection Error on this code, and I am not quite sure what I am doing wrong. [url]http://msdn.microsoft.com/en-us/library/aa376065(VS.85).aspx[/url] That link shows the function and what it should do. Am I on the right track? What do I have to do to fix the error. [CODE] #include …

Member Avatar for cikara21
0
320
Member Avatar for AssaultM16

Hi! I have two questions about functions. First how can I use a main() local variable in a function outside of main? And how can I use a variable in the function paramaters which already has stored information (stored in main() ), and not have to give it new information …

Member Avatar for mrnutty
0
98
Member Avatar for Tigran

Hello, I've got this project where i need to use a webcam. I'll need to get every frame made by a webcam (uncompressed) and send it to my program. My program should extract some information out of the frame and then get the next frame and do the same with …

Member Avatar for Tigran
0
159
Member Avatar for ashishchoure
Member Avatar for Tigran
0
84
Member Avatar for mejohnm

Hello all, I am trying to add two objects of integers. Object A: 92999 Object B: 22 My add method works when A is being added by B, but not the other way around because the amount of nodes is less. I should know how to add a node but …

Member Avatar for mejohnm
0
80

The End.