49,765 Topics

Member Avatar for
Member Avatar for tomtetlaw

I use CRT memory leak checking in my program, when it closes, it produces this output: [code] Detected memory leaks! Dumping objects -> c:\program files\microsoft visual studio 9.0\vc\include\crtdbg.h(1203) : {133} normal block at 0x003B6938, 4 bytes long. Data: < 5 > 00 00 35 00 c:\program files\microsoft visual studio 9.0\vc\include\crtdbg.h(1203) …

0
73
Member Avatar for ninjatalon

What are the purposes of using ifndef and define? When should it be used and why? I made a simple program in class just to go over the basic of Friends in classes but it wouldn't work and I was getting errors all over even though I went through it …

Member Avatar for Fbody
0
116
Member Avatar for raven_007

[QUOTE]programing turbo c[/QUOTE] how can i make a moving name program going round and round my monitor in turbo c and i need this 5 days from now!

Member Avatar for chrjs
-1
75
Member Avatar for beejay321

The problem for my CMPT103 class is to write a program that takes a binary number as an integer and returns it as a decimal, i would be able to do this easily by taking it as a charecter array and dealing with each individual element but i dont understand …

Member Avatar for WaltP
0
438
Member Avatar for thekitoper

I am fairly new to c++, and I would like to know whether or not I need to have the library files present on the system to run a compiled program that used the library files to compile on a different system. Thank you.

Member Avatar for gerard4143
0
92
Member Avatar for thekitoper

[CODE] int main(int argc, char* argv[]) { std::cout << argc << std::endl; } [/CODE] The code above will print a number depending on the number of arguments added to it. However I am writing a game in c++/python and I need the program to accept a integer argument that will …

Member Avatar for thekitoper
0
127
Member Avatar for Harley_Quinn

Allrite so I'm writing this program - and I've been having some trouble with it - there are three parts to it 1. Write a function [CODE]void tolower(char* s)[/CODE] that replaces all uppercase characters in the C-style string s with lower case letter. - Two helper functions to use a)[CODE]bool …

Member Avatar for jonsca
0
181
Member Avatar for daniel1977

Dear Friends: I am having trouble with this exercise. I was able to compile and create the list 0-7 and reverse. I am not sure where I went wrong. Thanks Danni #include <stack> #include <iostream> using namespace std; template <class stackType> void reversedStack(const stackType & originalStack, stackType &reversedStack) { stackType …

Member Avatar for JamieLynnSEO
0
75
Member Avatar for anu07

I am getting a "misplaced break" error from this part of the code,the following is a part of the mfile function,the while loop should break if the entered string in temp equals to the one in exit....I don't know why it shouldn't work,any help?Thanks. [CODE] ofstream myfile; myfile.open(fn,ios::ate); cout<<"File has …

Member Avatar for anu07
0
851
Member Avatar for Jennifer84

Hello I have a problem. I have a project that consists of 4 forms(Form1,Form2,Form3,Form4). I usually debugged this project. Now I might have done something stupid. I deleted the all 4 .h files. I did keep Form1.h file because I was doing a small program out of that file and …

Member Avatar for Jennifer84
0
120
Member Avatar for akase2010

Now make a program so that it stores the values in increasing order, i.e., each time a value is added it is placed into its proper position in the list. Here is my code, I cant get it to put them in increasing order. [CODE] #include <iostream> using namespace std; …

Member Avatar for Fbody
0
129
Member Avatar for chintan_1671

I have created a C++ Win32 Dll. I have created a .def File which contains the names of the functions in Win32.Dll As: 1Win32.cpp includes a class library file named gs.tlb It has functions named sum, strupper 1win32.def as LIBRARY "1WIN32" EXPORTS sum strupper When i try to register the …

Member Avatar for chintan_1671
0
266
Member Avatar for Masood_786

Hi All, I am a software developer C/C++, not expert in network programming but did a little bit. I work as s free lancer and have been tasked to implement UDP server (Broadcaster) over internet (Server machine has Static IP assisgned by ISP so reacheable from any part of world, …

Member Avatar for Topi Ojala
0
959
Member Avatar for hydeous

Hi, I'm having a strange problem with my linked list program. This is slightly embarrassing because I'm getting back to coding in C++ after 4 years and don't remember much. This is the code [CODE]#include<iostream.h> #include<conio.h> #include<string.h> void printList(struct node *&); struct node { node* next; int data; }; int …

Member Avatar for hydeous
0
140
Member Avatar for normanallen

Having got the old program to work (more or less) as a Console application I have now turned my attention to making it work as a 'proper' program. My first attempt was to generate the 'Hello World' string as a message box. I found I had to cast the second …

Member Avatar for normanallen
0
132
Member Avatar for cheers07

We need to combine this two codes to create a game in which we have to count how many times we pressed enter for a matter of time. we need to display the instructions above and how many times we hit or pressed the enter button and also the time. …

Member Avatar for Moschops
0
117
Member Avatar for pseudorandom21

Hey guys, I'm making a global operator, and I have a line where I'm comparing a std::string::difference_type to a std::string::size_type, I think the difference_type is usually a signed integer, and the size_type an unsigned.. Any ideas for an algorithm change? Also, there is a lambda function used I would like …

Member Avatar for pseudorandom21
0
119
Member Avatar for SWEngineer

I have a [B]C++[/B] program written using [B]Eclipse CDT[/B]. This program needs arguments to be passed to it. How can I do that using Eclipse CDT? Thanks.

Member Avatar for jonsca
0
44
Member Avatar for VasquezPL

Why code: [CODE]client->Credentials = gcnew NetworkCredential("username", "password");[/CODE] doesnt work for me? [CODE]Error 1 error C2061: syntax error : identifier 'NetworkCredential' [/CODE]

Member Avatar for VasquezPL
0
45
Member Avatar for MasterGberry

I am disassembling an exe file trying to find out how some parts of it work so we can make an easier modification then the current system works (which is just copy and overwriting files). I found some functions in there that refer to a MPGameSetupPage.cpp (which obv i can't …

Member Avatar for VernonDozier
0
177
Member Avatar for fka

[CODE] //file included from main.cpp #include <iostream> #include <ctime> void generate(int height, int width) { int i,j,random,x,y,check; char map[height][width]; bool way[4], border[3]; srand(time(NULL)); //[error 'srand' was not declared in this scope] for(i=0; i<height; i++) { for(j=0; j<width; j++) map[i][j] = 178; } x = rand()%height; //[error: 'rand' was not declared …

Member Avatar for mrnutty
0
203
Member Avatar for BTW8892

I'm creating a voting program in which you input the persons name and how many votes they have received. It than prints out the persons name, their amount of votes and the percentage of their votes from the total. I can't seem to get the percent of total to work …

Member Avatar for BTW8892
0
1K
Member Avatar for AutoPython

Is their ANY way to do something like: [code] for (int x=1; x<3; x++) {string MyArray[1][x]={"-"};} [/code] Assuming the array has already been defined? I really don't want to have to do: [code] MyArray[1]={blah} MyArray[2]={blah} MyArray[3]={blah} etcetera etcetera [/code] I'm not necessarily looking for efficiency but seriously, initializing 50 arrays …

Member Avatar for AutoPython
0
114
Member Avatar for TriG0rZ

Hi, i want to be able to do this: bmpPicture = OpenPic->Execute(); i want to execute open pic, this will then allow the user to choose an image they want to load. Then get that data and store it into bmpPicture, so that i can then send bmpPicture into something …

0
76
Member Avatar for dyingatmidnight

Hello. I'm a total noob to C++ and MFC, I've been teaching myself from books and it's not going too well. I've been asked to create a test application for a controller. The controller consists of six joysticks connected to a digital I/O board that's connected via USB. I managed …

Member Avatar for Moschops
0
197
Member Avatar for mangopearapples

Hey guys, I just started to try and use OpenGL and I wanted to run an example but I get linker errors. The code is just fine but it has linker errors says the console. Linker Errors/Console: [CODE] [Linker error] undefined reference to `glFinish@0' [Linker error] undefined reference to `wglSwapBuffers@4' …

Member Avatar for Stefano Mtangoo
0
530
Member Avatar for BMW87

hello I'm new to this and will like some help. I will like to create a visual program with to command buttons, the first to open a file by having the user choose the file and the second command button is to open the file and read in the text. …

Member Avatar for BMW87
0
337
Member Avatar for macroz0id

Hey. I am writing a program with menu using curses.h. It works well BUT stuck when i add info(e.g. name, author). I rack one's brains a lot but have no idea why it happens. P.S. interesting thing. If you add after line 60 system("cls"); it will works, but if you …

0
49
Member Avatar for bleedsgreen33

Let me start off by thanking the individuals who have helped me before on other projects, you are awesome. Now on to my new issue. We are learning STRUCT in our new assignment. I had an issue before that was resolved by using a call by reference instead of value. …

Member Avatar for mike_2000_17
0
130
Member Avatar for charqus

Hello guys. I have a matrix with char. [CODE] #define MAX_CHAR 128 #define MAX_SIRURI 10 char siruri[MAX_SIRURI][MAX_CHAR]; [/CODE] I must read the number of strings ( [B]n[/B] ), and after that, to go through each string. I must read each string, after that, to show it, and to find for …

Member Avatar for arkoenig
0
96

The End.