49,765 Topics

Member Avatar for
Member Avatar for nizbit

I wrote a function that compares the characters of two strings recursively. If the characters of the strings are all equal the function returns 0. If the character from string1 is smaller ie-"a" to "l" it returns the negative difference of their ASCII vaules. If the character from string2 is …

Member Avatar for ArkM
0
130
Member Avatar for bhoot_jb

i am a beginner in MFC programming and using MS VC++ 6.0. I am trying to create my own window using AfxRegisterWndClass(). My code is as follows : [CODE]Frame::Frame() { LPCTSTR className; HBRUSH brush; brush = (HBRUSH) ::GetStockObject (BLACK_BRUSH); className = ::AfxRegisterWndClass (WS_OVERLAPPEDWINDOW, AfxGetApp()->LoadStandardCursor (IDC_CROSS), brush, AfxGetApp()->LoadStandardIcon (IDI_ERROR)); Create (className, …

Member Avatar for bhoot_jb
0
168
Member Avatar for Bigboy06

hi; i need to count d number of occurrences of all the chars in a file. i can't figure out how to count how many of each char there are. this wat i have up to now. i need the to print only the ASCII code from 0-127 [code=cplusplus] #include …

Member Avatar for ArkM
0
101
Member Avatar for thetpaing
Member Avatar for thetpaing
0
72
Member Avatar for JONZ

Can anyone help me make an inventory program in c++??,.My task is to create an inventory program that reads from a file and then allows the user to manipulate the data and overwrite the file. I'm a total beginner when it comes to c++ so please use simple codes!

Member Avatar for JONZ
0
112
Member Avatar for monkey_king

Hi, I've been programming a lot of c code, and now I'm trying to set my mind into the c++ way of doing things. so I'm trying to avoid pointers, and use refs instead. As far as I understand pointers are to be avoided using stl's for instance. I have …

Member Avatar for ArkM
0
117
Member Avatar for dmlandrum

I don't know how many C++ coders might be out there, but I've been trying to get this question answered about multiple inheritance. Say I have a class called B that inherits from A: A -> B Now, I create a class called C that, perhaps due to programmer unfamiliarity …

Member Avatar for grumpier
0
93
Member Avatar for inkcoder

Hey everyone, still learning c++ I had a question. How do I create an array that will hold strings of text. such as: ??? map[10]; map[1]= "text"; map[2] = "text2"; map[10] = "text3"; cout<< map[1] "\n"; help would be great ink

Member Avatar for Lerner
0
116
Member Avatar for daggath

Hi, I recently was trying to learn how to write DLLs and was doing ok until I ran across this interesting problem. It seems that the function is not receiving the last argument. Here is my code for the dll [code]#include "stdafx.h" BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID …

Member Avatar for daggath
0
169
Member Avatar for nizbit

I have an input file that has call to function and arguments that are passed to that function. There might be one argument or two. A simple while loop for input will not work ex-while(inputf >> function >> arg1 >> arg2) because if a function has only one argument then …

Member Avatar for nizbit
0
231
Member Avatar for KraMer

Hello everyone! I've started a project on SF.net to create a small yet modern IRC client (µIRChat or simply µIRC). However, there one thing that I really can't decide before I start, and that is the language to use. My idea came from µTorrent, which is, as far as I …

Member Avatar for KraMer
0
197
Member Avatar for vidit_X

[URL="http://www.daniweb.com/forums/post303743-1.html"]Q.Write a program which will print all the pairs of prime numbers whose sum equals the number entered by the user. ( suggested by Aniseed ) (Intermediate) [/URL] [code=C++] #include<iostream.h> #include<conio.h> #include<math.h> int prime(int); void main() { int i,j,c1,c2,num,f1,f2; clrscr(); cout<<"Enter the number-"; cin>>num; for(i=2,j=num-2;i<=num/2;i++,j--) { f1=prime(i); if(f1) { f2=prime(j); …

Member Avatar for vidit_X
0
655
Member Avatar for deepak@

I will explain... I downloaded `mysql-5.0.45-win-src.tar.gz` from Mysql download area.I tried to built Mysql.sln inside that,but i am getting errors(about 58) like Error 149 fatal error LNK1181: cannot open input file '..\zlib\release\zlib.lib' mysql_upgrade Error 319 error PRJ0019: A tool returned an error code from "Performing Custom Build Step" mysqld Error …

Member Avatar for ArkM
0
119
Member Avatar for urbancalli

guys, what do you think is the best compiler for beginners in C++? actually we are asked to make a game in C++. we are now using Dev C++, but we can't find a graphics library in it. thanks.

Member Avatar for ArkM
0
255
Member Avatar for AndrejM.

Hi all. I've done some bit of programming in the past, mostly in python and some C aswell. (I can still remember that "C for dummies book" hehe). I'm trying to get started with some anticheat software, of course I'll start with some easy methods first before trying anything more …

Member Avatar for ArkM
0
173
Member Avatar for gregorynoob

okay, so i gotta make a good enough hash function that should be able to make me a key for out of two integers ( -1000000 <= x, y <= 1000000 ), and should work...well atleast 80% of the time so i could store these in an one-dimensional array... i've …

Member Avatar for gregorynoob
0
94
Member Avatar for balena

I'm just writing a reading for the time a binary file where I stored records of my objects. It seems woorks very well. Now I'm working for random access at position "X": [code] ifstream myFile(fileName,ios::in); myFile.seekg( (X*sizeof( object )) , ios::beg); [/code] Should be ok. Before I start to write …

Member Avatar for Salem
0
138
Member Avatar for BradenMurphy

Hey again. just want to know how to create a query such as an insert query with MS access and C++. this is the code im using to connect to the database and im using Dev C++ [CODE=syntax]#include <windows.h> #include <stdio.h> #include <string.h> #include <odbcinst.h> #include <sql.h> #include <sqlext.h> #include …

0
94
Member Avatar for Bigboy06

my program is suppose to count d number of occurrences of a chars in a file. i just dont know how to store d occurences. this is wat i have done up to now. [code=csharp] #include <iostream> #include <fstream> using namespace std; ifstream fin; void charactercount(int& w, char& s ); …

Member Avatar for dougy83
0
136
Member Avatar for nizbit

The recursive function is only reversing the first and last characters of a string. I've been trying for hours but cant find the error. Any help would be awesome. The code: [CODE] #include <iostream> #include <string> using namespace std; void str_reverse(char str[], int length) { char temp, temp1; int starti=0; …

Member Avatar for nizbit
0
210
Member Avatar for JonathanHXC

Hi, I am a new programmer - I'm taking a course of C++ programming in College. I have a quick question - well, I hope it's quick. After I create a program and try to run the program, the .exe file will pop up and in less than a second …

Member Avatar for vidit_X
0
117
Member Avatar for zaaweel

Hello, i just started with on my new school and we are going to make an application that ask how old you are. If you're 13 to 19year old it should say ''Teenager'' But if you write for example 8, it should say '' little kid ". I started to …

Member Avatar for dmanw100
0
76
Member Avatar for BradenMurphy

Hi i've got a problem. I keep getting this awesome error "[Build Error] [Project1.exe] Error 1" I copied this source code from [url]http://www.daniweb.com/forums/thread56924.html[/url] I just can't seem to get it to work. can someone pls help [CODE]#include <windows.h> #include <stdio.h> #include <string.h> #include <odbcinst.h> #include <sql.h> #include <sqlext.h> #include <sqltypes.h> …

Member Avatar for BradenMurphy
0
328
Member Avatar for freelancelote

Hi, I'm learning C++ at the moment using one of Jesse Liberty's books and got to the pointers day. They ask to code a stray pointer as an exercise and give as a solution the following code: [CODE=syntax] int main() { int *pVar; *pVar = 9; return 0; }[/CODE] Could …

Member Avatar for William Hemsworth
0
243
Member Avatar for YaelGD

Hi all, I'm trying to figure out why TH I get these error unhandled exception at <address No.> in <my project neme>.exe: <address No.>: Privileged instruction and another : unhandled exception at <address No.> in <my project neme>.exe: <address No.> : Access violation writing location <address No.> when I try …

Member Avatar for YaelGD
0
137
Member Avatar for Ayu1004

I've spent entire night and day searching on the internet how to solve my problem, and i couldn't find anything... so please help me, if you know :( this is piece of my code: [code] int main () { string line; cout<<"Welcome!"<<endl; getline(cin, line); while (line!="0") { hello (line); getline(cin, …

Member Avatar for Ayu1004
0
181
Member Avatar for ulrik04

hey all :) I'm making a console program, and I want to do that when you run it from the terminal, you can give arguments like -debug (./program -debug). How do i get whether an argument is set or not in the code? i've tried #ifdef debug, but it didn't …

Member Avatar for ulrik04
0
277
Member Avatar for Ayu1004

well i didn't have to include anything except string with working with strings and getline, and getline works... but there's another problem. i always have to press enter twice for another line of code to read ;_;

Member Avatar for Ayu1004
0
92
Member Avatar for Mehwish Shaikh

Hello and hii fellows.... I want your help right now in making a BST in which we can perform treeSearch....treeMINIMUM....treeMAXIMUM....treeINSERT....treeSUCCESSOR....treePREDECESSOR....treeDELETE....alongwith INORDER....POSTORDER....PREORDER traversal methods.... I have made a program consistiting of all methods excluding treeDELETE.... I'm ordered to make a tree-class....and a structure for node of a tree.... but im confused …

Member Avatar for Nick Evan
0
352
Member Avatar for olsoul_41

Hi there I have a problem creating a slot machine game in turbo c++ because I cant get the value of the randomize number....

Member Avatar for Narue
0
136

The End.