49,757 Topics

Member Avatar for
Member Avatar for Duki

Hey guys, we were given an opportunity for extra credit in my OOP class. We're going over recursion and my prof said if we could do a project using recursion and do another useing iterative statments, and time them, we would be given extra cred. Is there a way to …

Member Avatar for Duki
0
92
Member Avatar for warpstar

My Question is regarding the code written below. If you look at the function called "function" when 'a' is passed to the function and the function "function" is evaluated. I was wondering what the return value would be for the first pass when (a =2), my questin specifcaly is that …

Member Avatar for Ancient Dragon
0
105
Member Avatar for DejanL23

I tried to write a basic calculator program, Visual basic finds 1 error. I cant find it. Please help. I am kind off new to programming. [code=c++] #include <iostream> using namespace std; int main(void) { system("TITLE calculator"); system("COLOR 9"); char cChar; double dfirstnumber; double dsecondnumber; char cDoagain; do { system("CLS"); …

Member Avatar for DejanL23
0
175
Member Avatar for tonyaim83

My C++ program creates a nxn matrix with given value. For e.g if the input is 10 it will creates a matrix of 10x10 now what i want is the script should run program and give input values in a variation of 1000. Say first matrix of 1000 then 2000 …

Member Avatar for maddog39
0
72
Member Avatar for fcleme

I am trying to relearn C by going through the K&R exercises (I have the first, non-ANSI, edition...that's how long it's been since I last programmed in C under Unix as a software engineer). I have Visual C++.net version 2003 on a Windos XP computer. I would prefer to continue …

Member Avatar for Ancient Dragon
0
132
Member Avatar for koolboy

i have written the following code. the problem is when i run (F9), i dont see my output neither do i see any error in the program. any idea why? thx in advance. empId: an array of seven long integers to hold employee identification numbers. hours: an array of seven …

Member Avatar for Ancient Dragon
-1
135
Member Avatar for toolmanx

I don't know if I am the only one having trouble with StretchBlt or if my symtom is a normal situation. StrechBlt works fine as I zoom the picture larger. I expect the pic to loose quality if I zoom out too far. My problem is: As I zoom smaller, …

0
132
Member Avatar for still_learning

Alright, I am back and I have a new program that I have been working on all day. It's funny because I'm sure most of you guys could do this in 1 minute. But as I said before I am 49 years old and do not use computers, just trying …

Member Avatar for WaltP
0
127
Member Avatar for liphoso

I have to write five function which i do not have to put in "main" but have to call inside main. i hade come up with a code which did not work and was incomplete but i was futher told i have to use global variables and not local variable …

Member Avatar for WaltP
0
127
Member Avatar for DREAMER546

hello .. please i need ur help in this .. i have this exercise .. 1. Define the following data member: a. fahrenheit_temp of type float. b. celsius_temp of type float. 2. Define a constructor that: a. Set the default value for the data member to zero. b. Call set …

Member Avatar for DREAMER546
0
249
Member Avatar for manisha_das

[QUOTE=krnekhelesh;454927]got it... Windows XP[/QUOTE] Hi , Do anyone have any idea regarding the oracle APIs, i am using the APIs os oracle 7.3 client library and i want to make it unicode compatible without changing the APIs, but by just making datatype conversion,is it possible???

0
47
Member Avatar for guaild

Hi everyone, this is my first post. I'll try to be concise. It's been a while since I've worked with C++, since I usually work in Java. I'm writing a program that I want to have run in the background while the system (Windows XP) starts up. But I want …

Member Avatar for guaild
0
318
Member Avatar for kahilw

[COLOR=#000000][B]Hello I am asking for help with this question that I have. I have tried to to find the solution for this but I have had no luck, please help [/B][/COLOR] [COLOR=#000000][B][/B][/COLOR] [COLOR=#000000][B] [/B][B]Analyze how the principle of [/B][B]const[/B][B]ness of objects can be violated or circumvented by using ordinary read/write …

0
62
Member Avatar for JavaGuy147

Hey, I'm making a very simple program to find out how many months it would take to pay off credit card debt [code=C] // Calculate Credit Card Debt and How long it would take to pay it off #include <iostream.h> using namespace std; int main(void) { double Debt, APR, MinMonthPay; …

Member Avatar for Ancient Dragon
1
242
Member Avatar for eranga262154

Hi all, I create a database on SQL 2005 Express edition and link it to a C++/MFC application as follows. It wont gives any compile time errors. But at run time, it gives an error. Here are details. Link the database in OnInitDialog() here is the code [code=c++] BOOL CSRFDBDlg::OnInitDialog() …

Member Avatar for eranga262154
0
111
Member Avatar for step2stepgirl

I need help to understand what I'm supposed to do in this question I'm not asking for a code what I need is explanation thanks a lot write a function template that returns the range of values stored in a vector <T>that is the difference between the largest value and …

Member Avatar for Duoas
0
69
Member Avatar for step2stepgirl

I need to modify this program (complete missing functions and anything that must be added) . I'll post my attemps and i want to know if it's correct and if there is any thing missing and need to be done . thanks in advance [code]#include <iostream.h> class point{ int x,y; …

Member Avatar for Duoas
0
89
Member Avatar for zandiago

So far this is what I have: [CODE] #include <iomanip> #include <cmath> #include <fstream> #include<string> #include<iostream> using namespace std; int main() { ifstream infile; ofstream outfile; infile.open ("Wordcalc.txt"); outfile.open ("WOutput"); char A = (1*2.0);//value for letter A char C = (3 - 20.4); char D = ((4/12.0) *3.09); char E …

Member Avatar for Ancient Dragon
0
472
Member Avatar for still_learning

Is this an example of a recursive function?? Somebody on another forum helped me put this together, as I am trying to make a diamond shape out of asterisks. But he did not know if this was a correct way of using recursion. Can somebody just tell me yes or …

Member Avatar for WaltP
0
166
Member Avatar for bran-chua

Question : Phonebook Write a phonebook program that can be used to save your contact list (like what you have in your mobile phone). The program should have the following features : •Displaying all the contact records •Save new contact into the list •Delete contact from the list •Search for …

Member Avatar for WaltP
0
171
Member Avatar for chizy2

I had this for classwork and was able to get it to work.. is there a better way to do the right alignments for the cost columns?? When I turned this in, the output returns right, but I was told there was an easier way to get them to align …

Member Avatar for chizy2
0
198
Member Avatar for swarbricke

I'm starting school next year at ITT Tech for programming in visual C++ and I'm hoping to get an early start. I have Visual Studio 2003 ver 7.1 and I dont' know ANYTHING about it! I was hoping for a link to a step by step web page that can …

Member Avatar for chizy2
0
85
Member Avatar for jobi.tv

hi friends, I don't have c++ software. plz give me the c++ s/f and tell me the link........

Member Avatar for WaltP
0
90
Member Avatar for jared0029

I have been assigned to create a program to simulate a soft drink machine. The following structure is supposed to be used to store the following data: Drink Name Drink Cost Number of Drinks in machine I am suppose to create an array of five structures and initialize the elements …

Member Avatar for Ancient Dragon
0
148
Member Avatar for Likezo

I am new c++ programmer. I looked at the code for the "bouncing ball" which was said to be "hello world" of Win 32. I have been trying to do the following: 1. Make the this ball move in a predefined rectangle (one ALREADY drawn) even before the ball starts …

Member Avatar for Likezo
0
130
Member Avatar for JesseQ

ok here is my code [code=C++] #include <iostream> #include <ctime> using namespace std; int main(void) { char cName[81] = "", cUser[9] = "", szComp[9] = "", szr[5] = "Rock", szp[6] = "Paper", szs[9] = "Scissors"; int cComp = 0; srand(static_cast<unsigned int>(time(0))); cComp = rand()%3; if (cComp == 0) strcpy_s(szComp,szr); if …

Member Avatar for twomers
0
208
Member Avatar for dgr8lord

Please write me the code!!!!!!!! Q. Write a function that will scan a string for theoccurence of given substring. The prototype of the function would be: char *substr(char *string1, char *string2); The function must return a pointer to element in string1 where string2 begins. If string2 doesn't occur in string1 …

Member Avatar for stymiee
0
89
Member Avatar for sugarflaps

hi i am having trouble creating a series if triangles the number of triangles depsned on the users inout here is what i have so far any help would be great i ahve been at this for days. i know its the loop but i just cant see the problem. …

Member Avatar for vmanes
0
79
Member Avatar for grunge man

i keep hearing about thees things called arrays but i never now what they are and are they used as much as classes?

Member Avatar for shuncyk
0
148
Member Avatar for gadege

In wdb gui the next button is not working. The only way i have to go to the next satament is stepinto button. can any body please help me in this.

0
47

The End.