49,766 Topics

Member Avatar for
Member Avatar for 2384443

plzz help me with this program #include<iostream.h> #include<conio.h> int sum(int s); int sum(int x); int sum(int j,int k); float sum(float p,int q); float sum(float y,float z); void main() { cout<<sum(0)<<"\n"; cout<<sum(3)<<"\n"; cout<<sum(6,7)<<"\n"; cout<<sum(5.5,8)<<"\n"; cout<<sum(4.9,3.5)<<"\n"; getch(); } int sum(int s) { return s; } int sum(int x) { return x; } …

Member Avatar for richieking
0
140
Member Avatar for soche123

![729809d51c75da2de9381dc33f42887d](/attachments/large/4/729809d51c75da2de9381dc33f42887d.jpg "729809d51c75da2de9381dc33f42887d") okay guys this the program in which we have to add a record,modify it or delete it. it adds and shows it successfully but whenever we want to delete a record it doesn't. When we add to records and delete the second one ,the list looks like this,

Member Avatar for tinstaafl
0
706
Member Avatar for team_ferrari22
Member Avatar for senadfok
0
189
Member Avatar for eldiablo1121

Hello everyone I have pretty lengthy code here, i think I may need to place all the code, but all I need is one one thing, it's pretty much done: #include <iostream> #include <iomanip> #include <string> #include <ctime> using namespace std; // Function prototypes void BuildDeck( int deck[], const int …

Member Avatar for eldiablo1121
0
2K
Member Avatar for J-P1988

Hey! On Qt, i created an QList<QLabel*> but when i try to access or modify it in later functions i get: Démarrage de C:\Projet QT\Text Based RPG\build-textbasedrpg-Desktop_Qt_5_1_0_MinGW_32bit-Debug\debug\textbasedrpg.exe...ASSERT failure in QList<T>::operator[]: "index out of range", file ..\..\..\Qt\Qt5.1.0\5.1.0\mingw48_32\include/QtCore/qlist.h, line 460 Invalid parameter passed to C runtime function. Invalid parameter passed to C …

Member Avatar for J-P1988
0
880
Member Avatar for annitaz

Provide three menu options to format the text entered in QTextEdit to (1) display the letters in capital letters (2) display the text in red (3) align the text in the center I did the 2nd and the 3rd part but I can't find the capital letter part if (name …

Member Avatar for triumphost
0
155
Member Avatar for lewashby

In the following program I'm trying to set the first, second, & third character values stored in processTheseThree [0], [1], & [2] to the int values D1, D2, & D3. When I tested my code with the line `std::cout << processTheseThree[firstSecondThird] << std::endl;` I was getting the correct values but …

Member Avatar for vijayan121
0
231
Member Avatar for dirtydit27

I have a questions about classes in C++. I'm working on a homework assignment where I have a class called Person and a derived class called Doctor. I also have two other classes that are called Date and Bill. I'm suppose to create a class drived from Person and call …

Member Avatar for tinstaafl
0
267
Member Avatar for ??!!

Hey guys i'm new to this forum ;so here's the thing i need help with my code. I am required to : Add to the class EECE230Student a private static variable which is used to count the number of objects generated. For this purpose, you need to perform the following: …

Member Avatar for phorce
-1
253
Member Avatar for lewashby

// Array for one's place char arrayOnes[10] = {"", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"} In the code above I'm having trouble declaring this array. I either get > error: too many initializers for ‘char [10]’

Member Avatar for mike_2000_17
0
178
Member Avatar for rofln

Hello, I have to submit a makefile along with my source code for a project in my data structures class. I have never done this before, so I had to do a lot of Googling. Needless to say, I have successfully created a makefile and ran it, but I have …

Member Avatar for rofln
0
128
Member Avatar for Labdabeta

I quickly threw together a drawing program in SDL and I am having a couple of issues with lag. The program lags really hard when the size is larger than about 700x700 pixels, and I cannot find anything other than a couple of SDL_BlitSurface calls to the 'image' surface in …

Member Avatar for Labdabeta
0
207
Member Avatar for efe.ozyer
Member Avatar for Suzie999
0
175
Member Avatar for nathan.pavlovsky

Hello Programmers! I am making a program that demonstrates the difference between passing by value to a function and passing by reference. My code is below: #include <iostream> using namespace std; int squareByValue(int); void squareByReference(int&); int main() { int x=2; int z=4; cout << "x= "<<x<< " before squareByValue"<<endl; cout …

Member Avatar for nathan.pavlovsky
0
206
Member Avatar for rajesanthu

[B]Simple C++ program for billing[/B] NB:Excuse me experts,,,,,This is only for beginners 1.copy and paste the program in a notepad 2.save the textfile with .cpp extension 3.select file type all 4.cut the textfile and paste it in your bin folder where turbo c is located 5.open turbo c and open …

Member Avatar for Monu_1
-4
10K
Member Avatar for Echo89

OK, I've taken advice from some members here, and members from another forum. And I've come up with this, thouht I'd just share it with you.

Member Avatar for dexblack_1
0
225
Member Avatar for marcelopb90

HI! I really need a simple C++ programe that calculate the pi by de sequence 4 - 4/3 + 4/5 - .. with a 0,0001 precision. Thanks!!!

Member Avatar for tinstaafl
0
75
Member Avatar for MasterHacker110

Every time I want to write an encryption program, say RSA algorithm. I have to re - invent the wheel and design the key generation and all those small things my self. Now latly I heard abou AES algorithm and that it is so secure and a lot more stuff. …

Member Avatar for MasterHacker110
0
231
Member Avatar for MasterHacker110

I wrote a very simple encryption program, well the algorithm is simple but there is one thing I am strugling with. Basicly after the user's key is generated the program will write it to a file. Then when the user want to decrypt the encrypted file, the file with the …

Member Avatar for MasterHacker110
0
199
Member Avatar for alaba81

#include <iostream> #include <conio.h> #include <Windows.h> using namespace std; int drying_revolution(int dryingspin_revolution); int rinsing_revolution(int rinsingspin_revolution); int main() { enter: cout << "...CHOOSE YOUR DESIRE WASHING MODE...\n"; cout << "ENTER 'a' for cotton mode\n"; cout << "ENTER 'b' for Quick wash\n"; int temperature_sensor = 0; //reading from the temperature sensor console …

Member Avatar for Vincentas
0
132
Member Avatar for no_one16

Hi.. Im new here and im in 10 grade .. We have our T.L.E its cumputer programing. And because im new in programing i dont really have any idea about this thing so if anyone can know how can i understand and answer my assignment i really appreciate it . …

Member Avatar for kvahanyan
0
152
Member Avatar for Abhinisha
Member Avatar for Vincentas
0
149
Member Avatar for Abhinisha
Member Avatar for hackoman96

is data structure (algorithms )related to mathematics like ) - sets ,matrices ,sequence and series , or logical maths related topics ?? and is there any differnce between data structure and data representation??

Member Avatar for Abhinisha
0
158
Member Avatar for Abhinisha
Member Avatar for kvahanyan
0
87
Member Avatar for kvahanyan

Hello people, I am trying to set up a simple soap client to [this](http://www.strikeiron.com/product-list/tax-currency/foreign-exchange-rates/) web service with gsoap. Code generated with soapcpp compiles and works fine but I cannot seem to successfully get data from service. This service uses soap_header to check user login and password. std::string login = "somelogin"; …

Member Avatar for kvahanyan
0
653
Member Avatar for Abhinisha
Member Avatar for phorce

So basically, I'm working on a project that can require both arrays and vectors to be passed through in order to calculate the final outcome. Now, I'm using the constructor to calculate the values and I need to know whether or not it is possible to change the datatype of …

Member Avatar for vijayan121
0
200
Member Avatar for Lp_baez

If the program is being run the "cin>>answerBoss;" runs just fine but right after that input the program skips the next input that reads "cin>>overTime;" I can't figure out what is causing this to happen.

Member Avatar for Nutster
0
250
Member Avatar for arunkishorres

hello !! I have a doubt. how to develop a software in c++?? i know it should be done through program. but how can i develop it into a software which runs like the dos counter-part of eclipse or winap or media player or anyother software. i mean how can …

Member Avatar for arunkishorres
0
251

The End.