49,761 Topics

Member Avatar for
Member Avatar for Stefano Mtangoo

I have genuine VS 6 Keys as well as accompanying MSDN library. But VS set up CD is missing :( Where can I download VS 6 setup? I have wondered in MS site and all I see is no VS6, juststories about it!

Member Avatar for Stefano Mtangoo
0
134
Member Avatar for Instinctlol

Can someone explain to me why this shows up as Foothill (user input) : -9.222255e+061 ---------------------------------------------------- DeAnza (user input) : -9.222255e+061 ---------------------------------------------------- SJSU (user input) : -9.222255e+061 ---------------------------------------------------- : 10 ---------------------------------------------------- : 20 //my input ---------------------------------------------------- : 30 ---------------------------------------------------- [CODE]void VectorList::DailyReport() { cout << "==========NGS Daily Temperature Report==========" << endl; …

Member Avatar for stephen.id
0
85
Member Avatar for PDB1982

I'm now stuck on trying to figure out why my letterGrade function isn't working....I'm trying to take the numerical values found right before it, in the Avg colum, and turn it into a letter grad (which I assume needs to be as a string). Any suggestions? [code] Total Number of …

Member Avatar for Zjarek
0
219
Member Avatar for tkud

Hey everyone, can I create a folder using c++, just the way we create a file?

Member Avatar for tkud
0
97
Member Avatar for camipr64

new poster, need help with a pig latin translator. translation doesn't work properly, any tips or troubleshoots? sorry if it seems long... any help would be greatly appreciated [code] #include <iostream> #include <string> using namespace std; bool isVowel(char ch); string rotate(string pigStr); string pigLatinString(string pigStr); int main () { char …

Member Avatar for camipr64
0
117
Member Avatar for NitaB

Hey guys! I'm on a new topic and I'm finding it to be a bit frustrating. And basically the way I am learning classes and ADT's is by playing with them. So, I started and I [I]think[/I] I understand the basic concept. I am going to post the code below …

Member Avatar for NitaB
0
154
Member Avatar for PDB1982

I am trying to figure out why my letterGrades and highest function aren't working.....I'm more clueless on the letterGrade portion, as I believe that my highest function is a simple fix that I'm just not seeing. With the letterGrade function I am trying to assign a letter grade to each …

Member Avatar for mrnutty
0
159
Member Avatar for Robyy14

Heya people i really would appreciate some help here.. The Program Works Just Fine At compiling but after like 1 second after ctrl + f10 to test it i get an error . I looked on google and it is something like Killed by signal 8(SIGFPE). [CODE] #include<cstdio> #include<cctype> #include<string> …

Member Avatar for Robyy14
0
11K
Member Avatar for Adnan Saleem

Hey everyone...... I was studying the course of Data Structures(DS) and in the end we have to make a Project.......so guyz its the time of project..... I thought of making something with suffix trees ..... so please anyone if you have any idea for a DS project concerning Suffix trees …

Member Avatar for Adnan Saleem
0
438
Member Avatar for PDB1982

I don't understand where the last line of my input is coming from....The program should stop reading with Hebb,Emily, but it seems that it's trying to bring in another line of information...any ideas? [code] Total Number of Students: 73 ID LName FName Q1 Q2 Q3 MT Q4 Q5 Q6 F …

Member Avatar for Lerner
0
118
Member Avatar for tango2009

I have this iterator that I want to format so the output is something like this. < "Index of first node"(first value of iterator)<<"Second index"(second value of iterator). Can anyone help me with this.[code]void Level::printAstarList(list<int> AstarList) { // cout<<"<"; std::list<int>::const_reverse_iterator it; for (it = AstarList.rbegin(); it != AstarList.rend(); ++it) { …

Member Avatar for pac-man
0
98
Member Avatar for pac-man

[CODE]class Car { public: Car(string name, const int wheels = 4){} private: string name; }; void main() { Car("Ford",3); // Why can I put in a 3? } [/CODE]

Member Avatar for pac-man
0
106
Member Avatar for confusedndazed

Hi, I'm trying to incorporate a program title and welcome message into my code and I'm not sure if I have done it correctly. I would also like to know how to incorporate the following function calls into my code: Call Personnel Age Call Calculate Average Age Call Display Average …

Member Avatar for Lerner
0
91
Member Avatar for pbreezee

My assignment is to write a c++ program which does statistical analysis of a group of exam scores. Up to 100 scores may be entered. All scores should be validated within the range of 0-100. A (-1) will be entered to signify the end of data. Scores may be decimal, …

Member Avatar for pbreezee
0
172
Member Avatar for vmanojnair

Hi , I am doing BE Electronics in Erode. Its my 7th Semester. I would like to do one mini project in C. So please suggest a good topic or please suggest some sites, where i get more information regarding the mini project. Thank you very much Manoj V

Member Avatar for peter_budo
-4
670
Member Avatar for XodoX1

Hello! Here's what I wanted to do: [quote] Create an array with four elements holding the total corporate sales for the division. -Create a private static variable for holding the total corporate sales for all divisions for the entire year. -A member function that takes four arguments, each assumed to …

Member Avatar for Lerner
0
149
Member Avatar for nedsnurb

Hi, I have recently completed a bubble sort array program, which works fine. And is here : [CODE]#include <iostream> #include <ctime> using namespace std; void bubbleSort(int Array[], const int arraySize) { for(int j = 0 ; j < arraySize; j++) { for(int number = j + 1; number < arraySize; …

Member Avatar for mrnutty
0
2K
Member Avatar for fradiavolo

Hello, below is my polynomial code. I had to add and multiply 2 polynomials. 1) All i have to do more is to sort decreasingly the adding() and product() functions. Eg: 4x^6 + 6x^4 + 2x^2... etc. 2) Second, to add the coefficient with the similar exponents, same in the …

Member Avatar for Lerner
0
251
Member Avatar for dani2010

I need help with the two dimentiona array because this is a big program to start learning this. Here's what i have so far. [CODE]#include <iostream> #include <cstdlib> #include <cstddef> //typedef char* CharArrayPtr; //CharArrayPtr a; //a = new char[number_of_rows]; int NO_ROWS = 7; typedef char* SeatRow[4]; typedef SeatRow Seating[NO_ROWS]; //Seating …

Member Avatar for dani2010
0
969
Member Avatar for sidra 100

when we create a file in c++. can we actually see it in the given folder.if yes then why cant i? when i run the program it display nothing.n no files by dat name is shown in that folder

Member Avatar for restrictment
0
62
Member Avatar for confusedndazed

Hello all, I am getting a few errors with my code, I have been playing around with it but I guess I still needed a few tweaks. The errors and code are as follows: 23 C:\myC++projects\averageproj.cpp expected `;' before '}' token 27 C:\myC++projects\averageproj.cpp expected primary-expression before '<<' token 34 C:\myC++projects\averageproj.cpp …

Member Avatar for sidra 100
0
127
Member Avatar for iammfa

Hi, I read this line in creating window example with win32 API: [CODE]LRESULT CALLBACK WindowProcedure(HWND,UINT,WPARAM,LPARAM);[/CODE] please, can someone explain it to me..! i googled but i can't find enough explanation regards iammfa

Member Avatar for Clinton Portis
0
127
Member Avatar for golfbird

I have a visual c++ 6 dialog based program which i need to improve and would appreciate advise. After I am into this program, several dialogs deep, I would love to press the Home Key and have it close up all my dialogs and return to the programs main dialog. …

0
56
Member Avatar for abhaymv

Hai, I have just finished a program 'Library information system'.There might be logical errors in the program.How should I go about testing it?I have put a small set of values, and it seems to work alright.But, tips from you guys would be helpful as this is my first software.(Not my …

Member Avatar for mrnutty
0
61
Member Avatar for bhey

can you please show me how to make a countdown timer? and a game program, like guess the missing word. because when i tried it, it doesn't give the right output. please help me. because i really don't know much about c++ i might fail to this subject.:S:'(

Member Avatar for bhey
0
202
Member Avatar for aana

write a program 4 incyption and decryption of a 4 digit code. entered by the user.For incryption use following mechanism: 1.sumofalldigits + current digit%10. 2.replace 1st digit with the 4rth and 2nd with 3rd. Use functions and pass by reference. For decryption use reverse mechanism. ppppllllllzzzzzzzz someone help me!!!!!!!!

Member Avatar for Agni
0
281
Member Avatar for abhaymv

Hi, I have this annoying problem in my project program.It simulates a Library.From the data stored in a binary file,the information about books are to be displated as: [U] Sl.no Book code Book Name Author no. of books[/U] 1 ES101 Sherlock.. A.C Doyle 10 2. SF200 Harry Potter J K …

Member Avatar for abhaymv
0
260
Member Avatar for cliffaem28
Member Avatar for sidra 100
Member Avatar for William Hemsworth
0
74
Member Avatar for Sheltac

Hi guys! I'm pretty new to C++. I am currently on freshman year at college, and have a programming problem (not homework, it's actually a side project of mine) that consists on implementing some algebra-related functions on C++. I'll go straight to the point: [code] int switchlines(int i, int j, …

Member Avatar for Sheltac
0
169

The End.