49,757 Topics

Member Avatar for
Member Avatar for jetru

Hey, I'm working on a Paint program. I've never built a proper program before so I was wondering how I should go about structuring an actual piece of software. I'm trying to a make a simple paint application (like MS paint) using C++ and the SDL library. Right now, I'm …

Member Avatar for vijayan121
0
180
Member Avatar for technogeek_42

[B]Moderator Note:[/B] Split from the thread [URL="http://www.daniweb.com/forums/thread67837.html"]C/C++ FAQ's and Practice Problems[/URL] [QUOTE=jetru;328964]projecteuler.net for the math freaks![/QUOTE] for math only ahmmm how about for game freak? do you have any suggestion for that like projecteuler.net

Member Avatar for technogeek_42
0
97
Member Avatar for Jaycii

I am trying to take my array of classes and add the values from one part of it together. I have everything ready but being able to add the parts of the array into a variable which I can use. Right now, I am using this to try and add …

Member Avatar for Jaycii
0
81
Member Avatar for nurulshidanoni

How to cal the examid like i want to call 001 and count how many exam 001 clash with 002, 003, 004...? [code] // Filename : ConflictMatrix.cpp #include <iostream> #include <fstream> #include <string> #include <vector> using namespace std; struct student { string studentid; vector <int> examcode; }; int main() { …

Member Avatar for nurulshidanoni
0
109
Member Avatar for nu2cpp

Hi, I am using BCB6 and trying to simulate a compass. I have an image that need to rotate (clockwise and/or counter clock-wise, it doesn't matter I think). I am reading the direction data over from other computer and using that data (0 - 360) to move the compass. I …

0
58
Member Avatar for atish00

Help me with the J loop itz suppose to terminate on hitting enter to pass on loop to the outer loop for incrementing row. I tried a[i][j]!=(char)13 but it failed. [code=c++]#include<iostream.h> #include<conio.h> void main() { clrscr(); int no=0,i=0,j,k,m,price[20]; char arr[20][50]; cout<<" ================================================================="<<endl; cout<<" Food on the run Restaurant "<<endl; cout<<" …

Member Avatar for atish00
0
81
Member Avatar for atish00

How to make c++ fullscreen (sort of) in vista :- [URL="http://img167.imageshack.us/img167/4783/45870184ss2.jpg"]http://img167.imageshack.us/img167/4783/45870184ss2.jpg[/URL] Your screen should look like this :- [URL="http://img518.imageshack.us/img518/6136/sshot3td7.png"]http://img518.imageshack.us/img518/6136/sshot3td7.png[/URL]

Member Avatar for atish00
0
282
Member Avatar for ankit_the_hawk

I am starting to develop a calculator in C++ which accepts the expression in the form: 2+3 or 2/3 ,etc. ( for the time being, only two operands and one operator) Once i get that done, I will begin the process of continuely expanding it :) The problem I am …

Member Avatar for TimeFractal
0
124
Member Avatar for fudawala

I need help in writing a C++ class definition called SIMPLEST_GRADES which will evaluate the students performance. It will take the three exams of four students and takes its average of those three exams. Can you tell me what I can do to fix this program or do I have …

Member Avatar for vmanes
0
83
Member Avatar for jov0708

i would like to copy the contents of a byte array to a long variable. my code looks like this: [code] long key = 0; for (i = 0; i < 8; i++) { key <<= 8; key |= (long)(buffer[i]); //<- this line causes the problem }[/code] however, when i …

Member Avatar for TimeFractal
0
1K
Member Avatar for sarnath1980

An example of a function definition in C language is given below: char fun (int a, float b, int c) { /* body */ … } Assuming that the only types allowed are char, int, float (no arrays, no pointers, etc.), write a grammar for function headers, i.e., the portion …

Member Avatar for ShawnCplus
0
85
Member Avatar for smiles

Hi, I want to display all the text exist in this variable [CODE]char hello[]="HELLO WORLD!";[/CODE] I use this function [CODE]void Speech(char *words,int position) { char *textptr; textptr = words; WrCmd2Lcd(position); delay_ms(10); while(*textptr != '\0') WrDat2Lcd(*textptr++); }[/CODE] and call it in main function [CODE] Speech(hello,lcd_set_ddaddr+0x00);[/CODE] but it only display "HELLO WORLD", …

Member Avatar for Narue
0
73
Member Avatar for thodragon

Hi to everyone. It's my first post here and I'd like to get some help. A friend of mine has 2 (simple for you) problems to solve and she doesn't have a clue (and nether do I). Prob 1.) Write a code in C++ (visual) that reads from the keyboard …

Member Avatar for thodragon
0
135
Member Avatar for Darth Vader

I am using this code inside a button. When clicking the button I browerDialog appears. I can now browe to a folder and press OK. The Directory will be inserted in the textBox1. What I now want to do is this: Inside of this Folder I have a .txt File. …

Member Avatar for Darth Vader
0
174
Member Avatar for number87

im trying to create a 2D array using a random generator but the compiler keeps giving me compiling error no matter how i modify the calling function [CODE]#include <iostream> #include <ctime> using namespace std; const int MAX = 4; void constructArray (int a [][MAX], int); int main() { int a …

Member Avatar for Nick Evan
0
134
Member Avatar for arunpawar

I have downloaded the visual C++ express 2005.Actually i have no experience with the visual C++, i used to develop with Visual Basic earlier but i don't know some of the following thing: 1. How can i enable the line numbers in my source code? 2. Where can i find …

Member Avatar for Ancient Dragon
0
155
Member Avatar for arunpawar

The last version of DevC++ is released as beta 5.It is the only lightweight (comaprison to large download of VC++ express) IDE available for C++ with Stable release(Not like nightly build of Code::blocks).But,there are plenty of updates of mingw since then,so the outdated version inside the setup needs to be …

Member Avatar for Ancient Dragon
0
183
Member Avatar for Ashu@sym

Hi, I am having problem in compiling the following piece of simple code(it didn't work in any of the compilers VC++,GCC etc) [code] #include<iostream> using namespace std; int main() { while((char c = cin.get()) != 'q') cout<<endl<<"Character printed = "<<c<<endl; } [/code] ERRORS: expected primary-expression before "char" expected `)' before …

Member Avatar for vijayan121
0
159
Member Avatar for yoyoman3000

Hi guys, quick question for you. [code]for (i = 0; i < NUM_EMPS; i++) { cout << "First and Last Name: "; cin.getline( names[i], 31 ); for (index = 0; index < NUM_MONTHS; index++) { cout << "Hours worked in "; cout << months[index]; cout << ": "; cin >> …

Member Avatar for yoyoman3000
0
152
Member Avatar for memo_c++

Hello guys, I wanna write a program that count for me the number of each letter I have in a text file then I want to cout the words and count the number of repetition of each word. I was able to do it except for counting the repetition And …

Member Avatar for memo_c++
0
73
Member Avatar for shadowfire36

ok i have an assignement the assignment is to make a menu with these selection Write a program that displays a menu with the following choices to the user. A - Find the largest # with a known quantity of numbers B - Find the smallest # with an unknown …

Member Avatar for WaltP
0
124
Member Avatar for afg_91320

hi guys. its me again. after going thru my prblm i was able to get thru a few of the kinks. however, i still am having issues with the mathematical statements. my assognment is to to create a program that will calciulate the monthly payment along with the loan and …

Member Avatar for WaltP
0
89
Member Avatar for Mr.UNOwen

Hello, I was creating a game in java and a thought came to mind, would it be better to dump it all and start from scratch with C++. So my question is, with all the cons I've listed and all the other issues that you know, what am I better …

Member Avatar for Mr.UNOwen
0
105
Member Avatar for tb808kid

Hi! I'm just at the the research and design stage for my final college project, I'm just wondering what some more experienced programmers think is the best way to get started with simple graphics and sound. The program is really just going to be a scripting language (not sure if …

Member Avatar for tb808kid
0
159
Member Avatar for eli Naiman

I have been using VC++5 for a while. All of a sudden I am getting the following error: "msdev has caused an error in dm.dll" Can anyone tell me how to get rid of this. Thanks

Member Avatar for Ancient Dragon
0
53
Member Avatar for Sgt. Pepper

I bought the book C++ Primer Plus [url]http://www.amazon.com/C%2B%2B-Primer-Plus-Stephen-Prata/dp/0672326973/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1202680271&sr=8-1[/url] because i plan on learning the C++ language, but i can't really understand what it is trying to say when it is suggesting compilers. Can anyone give their feedback on the best compilers for beginners? And also, C++ is the best place …

Member Avatar for Sgt. Pepper
0
192
Member Avatar for olams

Hi, i am writing a program to manipulate polynomials. however, i am having problems with my root function. this function is meant to find the real roots of a polynomial using newton-raphson formula. please help me. [code] #include<iostream> #include <sstream> using namespace std; //A class to handle a list node …

Member Avatar for iamthwee
0
118
Member Avatar for glendavis

This is supposed to return the index of the first empty string in the array using recursion. Instead of returning the index of the FIRST empty string, this function I wrote returns the index of the LAST empty string. I have no idea how to search from the beginning of …

Member Avatar for VernonDozier
0
171
Member Avatar for noulmail2007

Hello, I need an email extractor which can extract me the email address from the specified ebay user I need.To give you a clue here is what I need.On ebay you know every user is registered with an email address but lately you cant view their email address.If any can …

0
43
Member Avatar for afg_91320

hello ive been working on this project for the past couple of days, and i keep on getting the same error. it tells me that the term will not evaluate a function with two arguments. please help me! thanks [CODE]#include <iostream> #include <cmath> using namespace std; int main () { …

Member Avatar for vmanes
0
81

The End.