49,765 Topics

Member Avatar for
Member Avatar for Vasthor

what I mean by undefined error is because I don't know what the error is about. :P, actually it's because the error not from the code itself, but it's about a compiler that can't defined some sort of file... btw, as title said, the error is from the code in …

Member Avatar for gusano79
0
235
Member Avatar for Zssffssz

Well really simple: I want to compile for my Pentum 4 and not a WIN32 Console App. What tag/thing would I use for this?

Member Avatar for gusano79
0
130
Member Avatar for Nikesh2014

[CODE]#include<conio.h> #include<stdio.h> #include<iostream.h> #include<process.h> #include<dos.h> #include<time.h> #include<fstream.h> #include<string.h> class getInfo { int dep; int with; int bal; int year; int mon; int day; char des[100]; public: getInfo() { dep =0; with =0; bal =0; year =0; mon =0; day =0; strcpy(des,""); } int year1() { return year; } int month1() …

Member Avatar for Schol-R-LEA
0
133
Member Avatar for stereomatching

I want to parse XML and change the contents of the XML Which one should I choose? boost::spirit or boost::serialization Thanks a lot

Member Avatar for stereomatching
0
347
Member Avatar for Stazloz

Having issues creating table using chain hashing (linked nodes). The program compiles, but is crashing during execution. I admit I don't really know what I'm doing since I havent really used inked lists in forever. A lot of this code I do not expect to work right away, such as …

Member Avatar for Stazloz
0
803
Member Avatar for slygoth

Hey guys. Im trying to open a file the user entered. [CODE] cout<<"Please enter the file name"; cin>>name; cout<<"Do you want to open the file? [yes] or [no]"<<endl; cin>>pick; if(pick=="yes") system("C:\\wmplayer.exe [COLOR="Green"]fname[/COLOR]"); else cout<<"Good bye"; [/CODE] How do i get the value thats in fname to be printed their so …

Member Avatar for peter_budo
0
194
Member Avatar for slygoth

Im trying to open a file. The user enters the name of the file they want to open example [CODE] string fname; string pick; cin>>fname; cout<<"Do you want to open the file?"; cin>>pick; if(pick=="yes") system("wmplayer.exe [COLOR="Green"]fname[/COLOR]"); else cout<<"Thanks for your time; [/CODE] Can someone show me how the replace the …

Member Avatar for WaltP
0
254
Member Avatar for stereomatching

[code] class robot_generic { public : template<typename Request, typename Response> bool const queryDriver(Request const &req, Response &res) { //some jobs, blah blah blah } template<typename Request, typename Response> bool const queryMoney(Request const &req, Response &res) { //some jobs, blah blah blah } }; class robot_A : public robot_generic { public …

Member Avatar for stereomatching
0
114
Member Avatar for Taino

What I need to do is... make the output continuous. For example when I input a number it displays character it represents in the current message line. What I need is for each input to add to the next line. In other words when I input 39 I get G …

Member Avatar for mzimmers
0
130
Member Avatar for BenjaminH

Hello, I wrote a hangman game but it won't output what the user entered. At the beginning the display array is filled with underscores and as the user enters letters it is supposed to get updated with their input, but it isn't updating. Can someone please tell me what I'm …

Member Avatar for Lerner
0
145
Member Avatar for smmcfarl

Hello! I am trying to make a program that reads in two numbers from a file and turns one into an imaginary number and then does different math functions with them. I am trying to use overloaded functions to do them. I am not getting any errors with what I …

Member Avatar for Lerner
0
173
Member Avatar for ayeshashahid

i have written a program taking marks of 35 students and calculating their average.can somebody please help me find my mistakes.the compiler is giving errors errors:---------------------Configuration: t2 - Win32 Debug-------------------- Compiling... t2.cpp E:\coding\t2\t2.cpp(21) : error C2109: subscript requires array or pointer type E:\coding\t2\t2.cpp(21) : error C2679: binary '>>' : no …

Member Avatar for Moschops
0
146
Member Avatar for PapaGeek

I’m trying to initialize a combo box with the content of an INI file. Each line of the file contains a name for a website and the path to that site, tab delimited. I’m trying to read the file into a list so I can sort it etc. Visual studio …

Member Avatar for PapaGeek
0
191
Member Avatar for arc45

"write a program that reads a list of names and telephone numbers from a text file and inserts them into an AVL tree showing in order and pre order traversal..once the tree has been built,present the user with a menu that allows huim or her to search the list for …

Member Avatar for shinnoon
0
2K
Member Avatar for Muhammad Anas

Hi, I am trying to write a program that will separate the digits of a non-negative integer and will print them each two spaces a apart but I have to avoid using arrays. For example if input is: 12345 then output should be: 1 2 3 4 5 I have …

Member Avatar for Muhammad Anas
0
3K
Member Avatar for SureshAbraham

I have developed some simulations in C++ in the old Borland 3.0 version. They involve only simple mathematics. I need to develop some graphics for them. I need to display different moving images simultaneously. Say, three graphics windows at the same time. I am familiar with the BGI library. However, …

Member Avatar for Dakot
0
287
Member Avatar for nikitadurgude

[CODE]#include <iostream> using namespace std; class bike { public: bike () { cout << "Bike: no parameters\n"; } bike (int a) { cout << "Bike: int parameter\n"; } void color(int a,int b) { cout<<"Inside Bike Color"<<endl; } }; class ducati : public bike { public: ducati (int a) { cout …

Member Avatar for Narue
0
211
Member Avatar for ziggystarman

Hoping someone here on the forum's can put me right on the above matter, after reading some I thought I could achieve the task in the following steps... [B][Visual C++][/B] [1] Convert AxisMediaControl image to system object [2] Convert object to ByteArray [3] Convert ByteArray to CharArray [4] Assign CharArray …

Member Avatar for ziggystarman
0
548
Member Avatar for Panathinaikos22

Can i make an application to start run when windows opens? without put program in start up list. Because computers are freezed and there is no point to put it in start up list, there are 2 HD, main partion is freezed were is and OS, and 2nd is small …

Member Avatar for pseudorandom21
0
124
Member Avatar for IT FRESH

hello... i am new student in IT and i have a problem which make me suffer ... we got exercise to do ... which i have to build a programme that accept the time and acceleration from the user and calculate the velocity ... my problem now is how to …

Member Avatar for cahitburak
0
122
Member Avatar for stereomatching

OS : win7 64bits compiler : visual C++ 2005 boost version : boost_1_44_0 [code] #include <gtest/gtest.h> #include <tchar.h> #include <boost/signal.hpp> #include <boost/bind.hpp> #include <boost/function.hpp> #include <boost/mem_fn.hpp> class Slot : public boost::signals::trackable { public: void Update(int) { ::printf("Signaled!!\n"); } }; int _tmain(int argc, _TCHAR* argv[]) { boost::signal<void (int)> s; Slot *slot …

0
64
Member Avatar for Mopikope

I am having a problem ending a line after a certain amount of characters. Also I would like not have the second occurrence when I print thing out. For instance it would show The first problem Instead of: KTAKSFJKLAHGLASLDKAJGDKJ I prefer : KTAKSFJK LAHGLASL DKAJGDKJ The second problem: KTTT K …

Member Avatar for WaltP
0
103
Member Avatar for mcclainra

I have been trying to figure out a way to make the two compatible but I can't seem to do it, any help? [CODE]#include <iostream> #include <string> #include <fstream> #include <cstdlib> #include <cstring> using namespace std; const int max = 100; char decode (char encrypted_string[16], char decrypted[], int key); int …

Member Avatar for mcclainra
0
227
Member Avatar for Vasthor

these one code, from line [63-71] of the original code [CODE] // for adding more students cout << endl << "Want to add more student?(yes/no): "; string add_student; cin >> add_student; if(add_student == "yes") { student_counter = 0; } [/CODE] the program seems "doesn't detect" the cin code above, it …

Member Avatar for Vasthor
0
249
Member Avatar for sujan.dasmahapa

Dear Friends I have two mfc application. One is a dll and the other one is a client exe application. From the exe application I am trying to load the dll and launch the mainwindow of the dll. For that in dll.....I have the view class there in view implementation …

0
72
Member Avatar for Pappu X

Can someone please tell me the order of this merge sort? [CODE]#include<iostream.h> void merge(int[], int,int,int); void merge_sort(int[],int); int min(int x,int y) { if(x<=y) return x; else return y; } void main() { int array[16] = {5,0,12,1,4,3,25,6,8,7,45,9,13,2,17,10}; int i; cout<<"Unsorted : "; for(i=0; i<16; i++) { cout<<array[i]<<" "; } cout<<endl<<endl; merge_sort(array,16); …

Member Avatar for Pappu X
0
504
Member Avatar for Kirbz

I have a Blackjack Assignment I need some help on. The Full requirements, what the .exe should look like, and what I have done so far is in this picasa link: [COLOR="Green"]https://picasaweb.google.com/zaidalmas/November172011?authuser=0&authkey=Gv1sRgCNXrltTFwZnYNQ&feat=directlink[/COLOR] Sorry I couldn't get the insert link to work right. What I have done: I have shuffled the …

Member Avatar for WaltP
0
285
Member Avatar for begyu

Hi all, I need help in the following problem. I have a data file containing 100 columns, with different number of rows. I would like to read for example the columns from 45 to 56 and calculate something on these columns one by one, let's say calulate the mean value …

Member Avatar for WaltP
0
152
Member Avatar for AbEeR Q8

Hello ; I need a help in my home work , I have to write the program that prints the number of clock ticks it took the program to sort the data the main part is already given , I have to wright the functions this is my program :: …

Member Avatar for raptr_dflo
0
123
Member Avatar for rsashwin

I am reading a line through standard input using [CODE] string str; getline(cin,str); [/CODE] now if i want to use the str to tokenize it using strtok , it says str should be char*. What should i do? I did try using gets(where i can use str by defining it …

Member Avatar for Moschops
0
61

The End.