49,766 Topics

Member Avatar for
Member Avatar for Nandomo

I am writing a program to make pictures into their negative. But I do not know how to open the bitmap file, I don't know if I should open it as a binary, when I try to my security coding kicks in, and when I open as ios::out my security …

Member Avatar for Moschops
0
128
Member Avatar for krnekhelesh

Create a Quine, that is, a program that prints out its own source code. (Expert) In this thread [B]Read Me: C / C++ FAQ's and Practice problems[/B] started by ~s.o.s~ how do you create this program.

Member Avatar for mahaju
0
2K
Member Avatar for shivakumar10340

i [COLOR="blue"][/COLOR]I am geting fatal error help me [CODE]/* The United Bank makes certain computerized facilities in their bank to implement customer records and their daily daily transaction records. The bank keeps certain information as follow: INITIAL.dat: acc_no : Account number name : Name of the Accountee address : Address …

Member Avatar for WaltP
-1
178
Member Avatar for MasterGberry

I am getting the correct chars when i read each individually such as data.at(0), (1)...etc. But when I am trying to read them into variables, i am getting some weird values for some of these. For instance: Getting value of 3, i should be getting the value of 1311780402 Also …

Member Avatar for MasterGberry
0
507
Member Avatar for shawnhanna

Hello, I am new to C++ windows programming and have only taken 1 class in c++ in my life (I have experience with other languages and OOP). I'm using Visual C++ 2008. and my project is created by the wizard for a Windows Forms Application. (I'm guessing this means CLI …

Member Avatar for shawnhanna
0
692
Member Avatar for lochnessmonster

[url]http://pastebin.com/uG54nJsv[/url] trying to make a linked list and C and for some reason it keeps crashing...the program is compileable if you'd like to see the memory error. I think my problem is with my pointer and dynamic memory allocation. -thx

Member Avatar for lochnessmonster
0
82
Member Avatar for pseudorandom21

Hello, I thought I was doing things right when I created a delegate to call a function to access the container's data, but it still throws an exception. I have something similar to: [code] public ref class myform : public System::Windows::Forms::Form { private: System::Windows::Forms::ComboBox^ form_combobox; private: delegate String^ getItemDel();//<-- delegate …

Member Avatar for pseudorandom21
0
160
Member Avatar for Fjolsvidr

I'm looking to learn C++ from online sources. Which would you recommend considering I have no prior programming experience. Also, is it necessary or helpful to learn C beforehand?

Member Avatar for mike_2000_17
1
126
Member Avatar for megaLU

Hello, I'm just wondering how you return a vector from a member function. I've looked online but had no luck. At the moment my function is set to long double, and when I tried setting it to std::vector it came up with lots of errors. Here is my code: [code] …

Member Avatar for megaLU
0
2K
Member Avatar for MasterGberry

Ok, so i don't think I need to post all the code....most of you have seen a lot of it anyways, if I need to I don't mind. But anyways, I made the outFileDrs Stream, then at the end of the program it closes it. But its only 1 kb? …

Member Avatar for MasterGberry
0
132
Member Avatar for saara.ansari

hi....my sir give me a litle menu driven program in c++.ist os all to creat a class n take ID,name std code addres home phone no,office ph no,mob no,city from user n display this menu 1:add a record,2:display all record,3:search a record by using Id,4:delete a record by using id,5:edit …

Member Avatar for JSPMA1988
-4
100
Member Avatar for flasp

The assignment says "Write a program that asks the user to type in numbers. After each entry, the program should report the cumulative sum of the entries to date. The program should terminate when the user enters 0." I have partly been succesfull I guess. But I dont know how …

Member Avatar for jonsca
0
256
Member Avatar for marufsiddiqui

i need some help/idea in coding a matrix class capable of giving its transpose matrix, inverse matrix & also the determinant of the matrix i am totally a newbie in c++; & learing all the way i just got the thought that to find the determinant it would be recursive …

Member Avatar for idriz12
0
2K
Member Avatar for andrewkim

Hey, I'm trying to link my .c file together with the .h file and I got a C1014 error that stated that I got "too many include files : depth = 1024" I need some help with this error. Did I do something wrong here? Thanks. This is the change2.c: …

Member Avatar for mike_2000_17
0
111
Member Avatar for SpecialForce

I am trying to delete the oldest file in a directory. I found a way to do it using a batch script, but when I put the batch code inside system, it doesn't works! [CODE] string dir = "C:\\testfolder\\"; string system_s = "FOR /F \"delims=!\" %%i IN ('DIR /A-D /B …

Member Avatar for Ancient Dragon
0
127
Member Avatar for AmerJamil

i had a quiz ,im confused about answer..can you please clarify which of the following is true? with reason 1. int a[ ][ ] ={{2,3},{3,4},{4,5}}; i. It will create a 3*2 matrix and initialize it ii. It will create a 3*2 empty matrix iii. It will actually create a single …

Member Avatar for VernonDozier
0
127
Member Avatar for leecheneler

I am in the process of writing the best first algorithm. i have not yet implemented the "best" part of it to select only the best node to expand. currently it is expanded each node created. However the while loop expanding the nodes stops executing before it should thus never …

Member Avatar for LTouch
0
2K
Member Avatar for flasp

The question is "write a program that request the user to enter two integers. The program should then calculate and report the sum of all the integers between and including the two integers. At this point, assume that the smaller integer is entered first. For example, if the user enters …

Member Avatar for kri_prasad2000
0
169
Member Avatar for PoZHx

DLL Injector coded in C: [CODE]#include <windows.h> #include <tlhelp32.h> #include <shlwapi.h> #include <conio.h> #include <stdio.h> #define WIN32_LEAN_AND_MEAN #define CREATE_THREAD_ACCESS (PROCESS_CREATE_THREAD | PROCESS_QUERY_INFORMATION | PROCESS_VM_OPERATION | PROCESS_VM_WRITE | PROCESS_VM_READ) BOOL Inject(DWORD pID, const char * DLL_NAME); DWORD GetTargetThreadIDFromProcName(const char * ProcName); int main(int argc, char * argv[]) { // Retrieve process …

Member Avatar for sasue11
0
2K
Member Avatar for tux4life

Hi, please don't blame me for reinventing the wheel, I was bored and had nothing to do, so I thought: what would I write? And apparently this code is the result :P

Member Avatar for Ancient Dragon
0
204
Member Avatar for Majabat

Dear All, I’m implementing a vector class that allows me to do vector arithmetic. What I’ve implemented is the following: [CODE]class mVec { private: float vec[3]; public: mVec(); mVec(const float * const parray); mVec(const float a, const float b, const float c); ~mVec(); mVec operator+(const mVec& param); mVec operator-(const mVec& …

Member Avatar for Majabat
0
156
Member Avatar for HelloPeople1

Hi guys I just started writing in c++ yesterday, although I did write in visual basic before. After watching some basic c++ youtube video's i decided i wanted to make my first game, tic tac toe. So as a warning i did this without using anyone else's code or any …

Member Avatar for jonsca
0
168
Member Avatar for navneet_kaur

#include<iostream.h> #include<conio.h> void main() { clrscr(); int first=0,second=1,third,n; cout<<" enter the number of elements"; cin>>n; cout<<"\n Fibonacci series="; cout<<first<<" "<<third; for(int i=2;i<n;++i) { third=first+second; cout<<" "<<third; first=second; second=third; } getch(); }

-3
47
Member Avatar for raymondchew2007

Consider and ADT list of integers. Write a function that computes the sum of the integers in the list aList. The definition of your function should be independent of the list’s implementation. may i know how to do this type of question?

Member Avatar for kernel>panic
0
132
Member Avatar for tarbeux

Hello, I could use some help in making a program that computes the volume of either a cube, a cyliner, or box. The user enters the shape (strings) they want (ex: cube. Then the program asks to enter the values such as side length, radius, etc. The program then displays …

Member Avatar for kernel>panic
0
91
Member Avatar for fmcyamwe
Member Avatar for Ancient Dragon
0
24
Member Avatar for nathanw

What the code does: accept a stock ticker eg AAPL as text input. It assigns it a number if it hasn't already been assigned a number. Then returns the number associated with that ticker. Part of a larger program. The code for int gethandle worked fine when it was in …

Member Avatar for jonsca
0
212
Member Avatar for MasterGberry

I am trying to do the following in C++, the C# code is here test is a string btw. [CODE]if (test == null || !test.Equals("Item Name\t")) return data;[/CODE] I did this in C++, but its crashing the program [CODE] if (test.compare(NULL) == 0 || test.compare("Item Name\t") != 0) return data;[/CODE]

Member Avatar for MasterGberry
0
646
Member Avatar for MasterGberry

This loop is going slow because of the push_back part at the end, can i make this go any faster? Basically this is what it does 1) Reads file into a char array 2) takes each char in the array and transfers to vector. [CODE]char *tempItem = new char[1]; delete …

Member Avatar for MasterGberry
0
151
Member Avatar for keithdixon

I am looking for some assistance regarding a new project i am doing. I am not a programmer by trade but have taught myself PHP, some javascript and some flash /AS2 & AS3 over the past 2 yrs along with mysql and currently run a company which utilises software i …

0
60

The End.