49,757 Topics

Member Avatar for
Member Avatar for Ryen_Lee

I want to write a program to keep my CPU Usage to 50%.How can I do it? I just can't find the API I need to use.Anybody can help? (PS: My OS is WINXP)

Member Avatar for Ancient Dragon
0
102
Member Avatar for RohitSahni

i am getting this error : "../incl/GDS_Thread/Thread.h", line 141: Warning (Anachronism): Formal argument 3 of type extern "C" void*(*)(void*) in call to pthread_create(unsigned*, const _pthread_attr*, extern "C" void*(*)(void*), void*) is being passed void*(*)(void*). "../incl/GDS_Thread/Thread.h", line 221: Warning (Anachronism): Formal argument 2 of type extern "C" void(*)() in call to pthread_once(_once*, …

Member Avatar for Salem
0
187
Member Avatar for Duki

I have a class called Person. I also have a class called Truck, inherited from class Vehicle. I want to overload the iostream operators for all three classes so that I can do statements such as: Person a ; Vehicle b ; Truck c ; cin >> a ; cin …

Member Avatar for John A
0
89
Member Avatar for mqueene7

I am trying to compare sort methods for my algorithms class and need to write all of the code for each method. My professor wants us to copy a randomly generated array and make 8 copies of it for each of the sorting methods. I'm at a loss as how …

Member Avatar for Ancient Dragon
0
72
Member Avatar for catdieselpow

All functions compile except the max function where i am trying to get it to find the maximum number in the matrix. The error message says overloaded function with no contextual type information Please tell me why. [code] #include <iomanip> #include <iostream> using namespace std; const int ROW = 3; …

Member Avatar for WaltP
0
208
Member Avatar for coolbreeze

I am trying to do a basic program that reads from a txt file and ouputs the results in a specific order on the screen. Its a salary type program. Here is my salary.txt file [code=C++] Randall Jones 25645.88 1999 Jim Johnson 56709 1992 Carol Troth 42387.05 2000 Briannal Deweyage …

Member Avatar for chizy2
0
137
Member Avatar for HLA91

Hi all I am a noob to C++ and I want to make a program that copies a file from wherever previously specified to the location of where the program is running from, I looked on google but I cant find anything I can understand can somebody please point me …

Member Avatar for John A
0
201
Member Avatar for dukedoc

I'm having a lot of trouble designing a switch statement that can take a string value I have to read from an input file and matching it up with an enum value using a switch statement so I can process the string using a function. Complicated, I know. Here's the …

Member Avatar for Salem
0
233
Member Avatar for majestic0110

Hi all, Just wondering if you could help me out here. bought a copy of c++ for dummies today and the first program in the book converts fahrenheit to celsius. Now I have some C and Java experience (I am a recent graduate of a software design degree) but have …

Member Avatar for iamthwee
0
199
Member Avatar for Dee76

I have a function in my Class which takes a char* from std input. I'm supposed to return an enum type "VehicleType". The function is part of the Vehicle class. It's supposed to return the vehicle type based on index[0] of the char*. I'm confused as how to even start …

Member Avatar for iamthwee
0
103
Member Avatar for tragicallylost

Hi. I am taking a c++ class and I have to write a program that manipulates polynomials. The assignment requires that you have a largeInteger class from the STL list class. I have the code, but when I go to run it, I am having some problems. I went to …

Member Avatar for iamthwee
0
111
Member Avatar for perl21

Hello, I am new to c++ I am trying to write a program that reads the keyboard input while running in the background. I am on Linux. It is not easy for me because every example I find makes use of a library I do not have. When I google …

Member Avatar for Salem
0
92
Member Avatar for aus_fas1

Hi I am reading a file with number of frames. frame 1 distance [3072] intensity [3072] amplitude [3072] w_amplitude [3072] frame 2... Now I want to read the data in structure form so that I have:- frame[0].distance[0] frame[0].distance[1].... ... frame[0].amplitude[0] ... frame[1].distance[0] and so on. My code is below and …

Member Avatar for Lerner
0
97
Member Avatar for bujoldea

my intro to comp science teacher gave me an assignment to: 1) enter two different dates with the use of stucts 2) use a swap function to arrange each date in order from earliest to latest 3) use functions to calculate the number of days between the two dates 4) …

Member Avatar for bujoldea
0
92
Member Avatar for maheen

hi i m new to this forum actually i ve joined this forum coz i m havin problems in c++ i m a student of telecom will any of u plz help me in writing a code for the following programs: 1.write a program that take 5 digit number input …

Member Avatar for vmanes
0
121
Member Avatar for maverick786

I would like to know what would be the best way to count the nodes accessed while searching for an item in a binary search tree. I have to keep a tally for each item I search for. I have included my search method from my program. [code=cplusplus] void BinarySearchTree::find(int …

Member Avatar for Ancient Dragon
-1
55
Member Avatar for zandiago

Good day. My infile contains the following: [CODE] TFFTFFTFFTFFTFTFTFTFFF A33 TFFTFFTFFFFFTFTFTFFFFT Z27 TFFTFFTFFTFFTFTFTFTFFT X12 TFTT FTFFTFFFT FTFTFFF H44 TFFTFFTFFTFFFFTFTFFTFF Q19 FFFFFFFFFFFFTFTFTFFFFF D72 TFFTFFTFFTFF FFFFFTFFF W32 FFFTFFTFFTFFTFTFTFFTTT Y09 TFFTFFTFFTFFTFFTTFFTTT S44 TFFTFFTFFTFFTFTFTFTFFF G11 FFTFFTFFTFFTFTFTTFTFFF J21 TFFTFFFFFTFFTFTFTFTFTT K61 TFFTFFTFFTFFTFTFTFTFT M03 TFFTFFTFFFFFTFTFTFTFFT P24 TFFTFFTFFTFFTFTFTFFFFT N54 FTFFTFFTFT TFF FTFTFFF F33 TFFTFFTFFTFFTFTFTFTFFF Z21 TFFTFFFTTFTTFFTFTFTFTF V39 TFFFTTFTTFTTFTFTFTTFFF …

Member Avatar for zandiago
0
3K
Member Avatar for jayrads

Hi all, Have a question regarding an assignment. In a previous assignment we had to implement a program that allows us to enter a system of connected caves within an underground labyrinth. How this is implemented shouldn't matter for this next assignment though. In this assignment, we have to use …

Member Avatar for zandiago
0
164
Member Avatar for hectic

hi i have used the template in my simulation program but it generate the error, my program line of code that generate the error is (these code are in queue.template file) template <class QueueItem> queue <QueueItem>::~queue() // [B]line25[/B] { } template <class QueueItem> void queue<QueueItem>::push(const QueueItem& entry) //[B]line 42[/B] { …

Member Avatar for hectic
0
415
Member Avatar for Duki

I'm getting an error in main() saying TitledEmployee is an undeclared identifier? [code=c++]#include <iostream> #include <string> using namespace std ; namespace Employees { class Employee { public: Employee ( ) ; Employee ( string theName , string theSsn ) ; string getName ( ) const ; string getSsn ( ) …

Member Avatar for Duki
0
87
Member Avatar for danielle2

I have been given a problem that asks me to do the following things. Write a program should be stored in two dimensional array. The program must include the following 1. list 4 qtrly sales for 6 divisions of a company. 2. show each division increase or decrease from the …

Member Avatar for Lerner
0
254
Member Avatar for DREAMER546

hi .. please can anyone help me with this .. i need it today i wanna to do swith with this .. can i or not? if ( x>y ) cout<< " x is bigger "; else cout<< " y is bigger "; -- and i wanna to do conditional …

Member Avatar for DREAMER546
0
116
Member Avatar for hasfoot

I am very new to C++ and am taking a beginners course in college. We have a project due this coming tues. and I am stuck, I was wondering if you could please help me. Background on proj: I am working in the circulation dept of a magazine, and it …

Member Avatar for Lerner
0
163
Member Avatar for ecestd1

how do you implement a copy constructor for this pointer-based ADT queue [code] #include "Queuep.h" #include <cassert> #include <new> using namespace std; Queue::Queue () : backPtr (0), frontPtr(0) { } Queue::Queue(const Queue& Q) throw(OutOfStorageException) { //implement here }//end copy constructor Queue::~Queue() { while ( !isEmpty() ) { dequeue(); }//end while …

Member Avatar for ecestd1
0
1K
Member Avatar for navy2005

Im doing a program that asks to enter a student's grades on four exams, I have to display the four grades and the average of the four grades, to the nearest tenth. The most problem im having is using the variable call total_grade which i have to initialize to zero. …

Member Avatar for navy2005
0
270
Member Avatar for tnvkrishna

is the syntax used below is correct? [code=cplusplus] class zz { private : string s; //constructor private: friend zz operator-(zz z); //assume definition of operator<< }; //constructor //operator<< zz operator-(zz z) { string s; s=z.s+"hello"; return zz(s); } int main() { zz a("fsd"); cout<<(-a); } [/code] i am new to …

Member Avatar for Duoas
0
151
Member Avatar for cmoodc

given the equations is it possible to develop midpoint algorithm for: hyperbola :ellipse :parabola :circle ??

Member Avatar for twomers
0
116
Member Avatar for anirudhbsg

hi there ... i am programming in dev c++ although it is very similar to tc++ but there is a certain difference between the two. so does anyone has an ebook on it or a link of any such ebook..... my email address is [i]removed[/i]

Member Avatar for anirudhbsg
0
92
Member Avatar for rugae

[CODE=c++]string a = "hello"; char b[20];[/CODE] Other than a for loop to copy character by character over is there some sort of function to convert strings to non const chars arrays? I don't even know if it exists or not but some kind of non const cast for a.c_str() perhaps?

Member Avatar for rugae
0
68
Member Avatar for people123

So after a day or two of trying i finally found out how to do this, my question is, is there any way to do this that is more efficient without using the prime function? [code]#include <iostream> using namespace std; int main() { std::string line; int i, p, x; for(i …

Member Avatar for WaltP
0
145

The End.