49,765 Topics

Member Avatar for
Member Avatar for floros

Hello there, I'm trying to compile a project in Visual Studio 2005 and the compiler finds errors in the file fstream.h. Some of them are: c:\program files\microsoft visual studio\vc98\include\fstream.h(88) : error C2872: 'streambuf' : ambiguous symbol c:\program files\microsoft visual studio\vc98\include\fstream.h(89) : error C2872: 'streampos' : ambiguous symbol c:\program files\microsoft visual …

Member Avatar for VernonDozier
0
189
Member Avatar for cam875

Could someone give me a detailed explanation or give me a resource that explains something like how if I created my own custom 3D model that had 8 vertices would that be the same as saying 8 polygons because I always here talk about things like game developing companies throw …

Member Avatar for cam875
0
88
Member Avatar for Alex Edwards

Is there any real different between using an union between two types and a reinterpret_cast between two types, for example-- [code=c++] #include <iostream> int main(){ union{ unsigned short *a; float *b; }; float value = 0.6f; b = &value; std::cout << *a << std::endl; unsigned short *s; float *f; f …

Member Avatar for vijayan121
0
2K
Member Avatar for edouard89

I have the following code that when compiles with my test program gives me a segmentation fault, I hope you guys can help me with this. I am compiling on a gcc compiler using: [quote] g++ a3test.cpp screen.cpp dtio.c -lncurses [/quote] screen.h header file: [code=c++] extern "C" { #include "dtio.h" …

Member Avatar for Salem
0
128
Member Avatar for sonicmas

I'm new in c++ programming. I have to do a program to save data from classes (Student, Teacher and Statistics). What may i use to save that values? (File, sql...) and how to use. If some one show me a litle program....:icon_smile:

Member Avatar for sonicmas
0
162
Member Avatar for ladyscoleman

I was reading the GPA score thread but it didn't help me any. i am suppose to be making a program that should prompt the user to enter up to 30 GPA's which are stored in a single dimension array. each time the user enters a GPA they should have …

Member Avatar for ladyscoleman
0
203
Member Avatar for edouard89

Hello once again everyone, my previous [URL="http://www.daniweb.com/forums/thread141733.html"]problem [/URL] appears to be resolved right now thanks for everyone who has helped. I have to make the following derived class [quote] Your LField class is derived from your Field class and represents a line field. Upon instantiation, an LField object receives between …

Member Avatar for edouard89
0
122
Member Avatar for OmniX

Few Questions: Passing by values(copy of the value) or references(actual value)? - What is the difference minus the two mentioned? - What is the better choice? - etc? Also this is a more general quesiton OOP, with most languages its better to learn and use OOP then just programming a …

Member Avatar for Alex Edwards
0
150
Member Avatar for utmibnca2004

I need help with my project. I don't understand how I would approach the following situation and need some advice/suggestions. I am using a file to read info necessary for the project and using classes to access the data. class Car { public: void CarInit(string& make, string& model, string& color, …

Member Avatar for mahlerfive
0
144
Member Avatar for errorman

[code=language] #include <iostream> using namespace std ;char (name)[20]; int helps; void (checkOutVillage) (void); int main(void){ { std==cout << "Please Enter Your Name!" << std==endl; cin >> name; std==cout << "You Are On A Great Quest" << name; << std==endl; std==cout << "There Is A Small Village In Trouble. Should We …

Member Avatar for VernonDozier
0
370
Member Avatar for edouard89

Hello everyone I have to create a class that has the following: [quote] Your Field class is the base class from which you will derive all other Field classes. Your Field class has the following public member functions, all of which are virtual: * void display() - does nothing here, …

Member Avatar for edouard89
0
294
Member Avatar for mksakeesh

Please compare the two codes below why is the first one displaying output to monitor where as the second code is displaying some unwanted characters. CODE 1 ..... #include <fstream.h> #include <string.h> void main() { fstream File("test_file.txt",ios::out | ios::in | ios::binary ); char arr[13]; strcpy(arr,"Hello World!"); //put Hello World! into …

Member Avatar for Salem
0
157
Member Avatar for Duki

Hey guys, We're trying to work with a driver program for our robot. If we can grab the x and y coordinates of the Mouse we could send them to the controller for driving. Does anyone know how to capture the mouse movement into an integer?

Member Avatar for iamthwee
0
163
Member Avatar for errorman

I made a script and it keeps saying error C2144 and fatal error C1004 [CODE] #include <iostream> using namespace std ;char name[20]; int helps void checkOutVillage (void); int main(void); { std::cout <<"Please Enter Your Name!" <<std::end1; cin >> name; std::cout << "You Are On A Great Quest" << name std::end1; …

Member Avatar for ArkM
0
88
Member Avatar for BattlingMaxo

Is procedural animation the same as tweening? I have looked on the net but get different answers. BattlingMaxo

Member Avatar for Nick Evan
0
185
Member Avatar for coderoobie

:'( Hi geeks!, since I started programming I have never used qsort() for sorting. I also tried to consult books but, 'little or no success!'. Can anyone who know better help me to understand qsort() function. Please do it with an example! Happy forever even faced with c++!

Member Avatar for jencas
0
159
Member Avatar for haven_u

can someone explain the difference between get functions in C++... like get() or getline() and on what situation should we use any of these functions,

Member Avatar for Sky Diploma
0
75
Member Avatar for sciwizeh

I am working on a Matrix class that will eventually do a lot of stuff, but early on I have already hit a snag, how do I initialize (in a constructor) the 2D vector I have declared. [code=c++]//matrix class #ifndef MAT_CLASS #define MAT_CLASS //template <typename T> using namespace std; class …

Member Avatar for sciwizeh
0
181
Member Avatar for jammy's

can anyone write a program tofind sum of 2 numbers using friend function and programti implement digital clock

Member Avatar for Ancient Dragon
0
48
Member Avatar for godlike111

help me make a code please... i need a code when you pick one of the menu then the menu you pick will show up... then when you press anything it will go back to menu again.... can someone show me the code please???.... Thanks......

Member Avatar for murderotica
0
101
Member Avatar for less123

Project Title : Student Grading System Purpose : Calculate the grade and sort the result in descending How the user operate the software: 1) user run the software 2) an interface show on the screen 3) user keyin Input file name (example:studentsmarks.txt) 4) user keyin Output file name (example:studentresult.txt) 5) …

Member Avatar for murderotica
0
313
Member Avatar for daviddoria

It seems that writing ascii files changed significantly from c to c++. It moved from file pointers and things like that to being very easy, like [code] ofstream myfile; myfile.open ("example.txt"); myfile << "Writing this to a file."; myfile.close(); [/code] However, from googling it seems that binary file reading/writing has …

Member Avatar for jencas
0
124
Member Avatar for FtKShadow

Ok I have been working on a basic calculator for C++. The only problem is that I don't know how to make it so if you divide by 0 it couts something. Anyone help. I know it would be possible with if/else statement. Heres the code so far. [CODE=C++]#include <iostream> …

Member Avatar for FtKShadow
0
187
Member Avatar for ohyeah

C++ program that input rectangular matrix A nxm (integer) and finds out the indexes of most occurred element and counts how many times he occurs. I just can't do it :(

Member Avatar for murderotica
0
158
Member Avatar for cam875

Ok so I am going to be switching to an ubuntu linux machine soon to do all of my coding and I was wondering if anyone has a reference to the function calls you can use with it because I am used to windows programming so now in my code …

Member Avatar for cam875
0
129
Member Avatar for Duki

Hey everyone, A friend and I are trying to figure out how to interface C++ 2008 with COM ports for our robotics team. Is there a simple "template" we could go by, or is it different for every device? Could someone provide an example of how to transfer data to …

Member Avatar for Duki
0
460
Member Avatar for waldchr

Hi I was wondering how to create a window to run my programs in. It talks about it in many posts but I couldn't find anything on how to actually make one. I have no idea where to start so you will need to tell me pretty much everything (e.g. …

Member Avatar for Duoas
0
87
Member Avatar for rizahbeng

write a program that will read the weight of a package of breakfast cereal in ounces and output the weight in metric tons as well as the number of boxes neede to yield one metric ton of cereal

Member Avatar for William Hemsworth
0
139
Member Avatar for gispe

Hi ppl, im back here, but now with an array problem.. this time im doin a simple program to compare the numbers in an array n then say how are they ordered.. user must type those numbers.. [code=plusplus] #include "stdafx.h" #include <iostream> using namespace std; void comparison (int number[]); void …

Member Avatar for Ancient Dragon
0
129
Member Avatar for tetra860

hi there, iv came here not for myself but for the sake of my little bro who is currently stressing out big time with a program he making for a project. the problem he has is that his partner who he teamed up with has now decided to leave his …

Member Avatar for Ancient Dragon
0
70

The End.