49,766 Topics

Member Avatar for
Member Avatar for Ace1.0.1.

Just picked up a beginners book on C++ so i'm pretty new at this. trying to write a program to test what i have learned so far, but it's not coming out as i had hoped so i'm hoping someone can help me out constructive criticism welcomed Here it is: …

Member Avatar for Ace1.0.1.
0
106
Member Avatar for desimator55

I'm using VC++ .net to write a program for searching through files in a directory and then opening them. The only problem I have run into is opening the file. I tried using streamreader but this does not work for opening pdf files. Currently I'm using system ("start //location and …

Member Avatar for Ancient Dragon
0
273
Member Avatar for niezam

please help me solving a program about booking a ticket for a flight that need to show the seat, the price and the class

Member Avatar for vmanes
0
121
Member Avatar for ashishchoure

hi, I have one query that create process funcion retuns bool value. And i want to know the exit code of my exe which i ran through create process function. EX. [CODE] int main() { return 5; } [/CODE] this exe is returning 5. I ran that exe by createprocess …

Member Avatar for ashishchoure
0
105
Member Avatar for necrolin

If I have 2 classes a) class Business b) class Customer I want the Business class to be able to store a dynamic list of it's customers. So I thought the easiest way to do this would be to use a vector. [code] class Business { vector<Customer> customers; public: Business(); …

Member Avatar for necrolin
0
202
Member Avatar for nehemiascr

Can anyone help me with the algorithm for the height of a n-ary tree, I have been looking and could only found for a binary tree, thanks in advance.

Member Avatar for Unix*
0
647
Member Avatar for tiara

Hello guys.. i am really new to C++. I feel a bit confused with the using of const in this code. [CODE] class B { private: int x; public int func() const { return x; } } [/CODE] Viewing at that source code,, what is really functions of const ?? …

Member Avatar for Ancient Dragon
0
110
Member Avatar for maey_kich

hello, I can't figure out how to create an array that can be called from any module. Global or public sounds familiar but they don't work. Cheers.

Member Avatar for Tom Gunn
0
93
Member Avatar for soffie

Need to make a random size (x = rows, y = columns) matrix which is filled with random numbers (only 0 or 1). So, if I don't know the size of the matrix, I use dynamic array. So far I have made this far, but obviously it isn't quite correct... …

Member Avatar for soffie
0
2K
Member Avatar for dadytzu4all

hy i m new in c++ and have a problem to resolv, actually 2... anyway could anyone help me, with results an axplanations too. first one--------------------------------------------------------------------- Create a console application. Make a class "Geometry". Derive a class Circle and a class Rectangle from Geometry. Make a class Display which is …

0
49
Member Avatar for PoRco1x

Hey guys, This is my first post here :) I have to compare to strings and then continue on with the loop.. [CODE]void HighScore::removePlayer(const string& name) { int i,j = 0; cout<<"Attempting to remove " << name<<endl; while (i<d_nPlayers) { if (d_players[i].name==name) { cout<<"Found : " << name<< "at slot: …

Member Avatar for PoRco1x
0
86
Member Avatar for kiryoku

[CODE] #include<iostream> #include<conio.h> using namespace std; int n[10],i,ns; string c; main(){ for(i=0;i<10;i++){ cout<<"Enter a number:"; cin>>n[i]; } cout<<"Number to search:"; cin>>ns; n[i]=0; for(n[i]=0;n[i]<10;n[i]++){ if(ns==n[i]){ cout<<"Searched Number is Found!"; } else{ cout<<"Searched Number is Lost!"; }} getch(); return 0; } [/CODE] help pls the output is repeating...

Member Avatar for Ancient Dragon
0
97
Member Avatar for sfuo

This program asks for integers from the user and stores them into a multidimensional array that adjusts its size.

Member Avatar for VernonDozier
0
1K
Member Avatar for 17ashis
Member Avatar for abhipro

Hey guys, I am trying to implement something in VC++ and have to use a library for this purpose. This library is in C++ and the authors have provided a seperate download for VC++ How exactly do I use the functions provided in this library in my own code? They …

Member Avatar for Tom Gunn
0
144
Member Avatar for ayaskant
Member Avatar for snowland

hello~ I have writed some program, but I unknew, What is the difference in win32 debug and win32 release in Microsoft visual c++? or some conclusion? please help thanks.

Member Avatar for necrolin
0
86
Member Avatar for newsguy

Within the next five years, Citizen Developers will be responsible for building at least 25% of all new business applications. That is the rather startling claim being made by Gartner analysts ahead of the Gartner Symposium and ITexpo in Cannes, France next month. So what is a Citizen Developer then? …

0
335
Member Avatar for nurmuhamad88889

how to make implementation of member function to read message received from others

0
46
Member Avatar for peekamalts

I am not an IT student however, a student of Healt and Human services and this IT class is an elective. I do not know any thing about programming but I am struggling to get through this class I read the text and disiffer some things. But as for the …

Member Avatar for jasvir
-1
331
Member Avatar for MyRedz

well here i am just starting to do some coding about handphone to smartphone object..it's an inheritance project but not mine..;) so i would like to share here about the errors and others. any help is appreciated... now my uml diagram i want to transfer to handwritten coding.so.. [QUOTE] Handphone …

Member Avatar for foze_skate
0
131
Member Avatar for kingstrider

Write a C program which takes number of integers to sum and gives following output: Enter the number of integers you want to sum: 5 1 = 1 1+2 = 3 1+2+3 = 6 1+2+3+4 = 10 1+2+3+4+5 = 15 remember v can use only iostream and the loops v …

Member Avatar for sfuo
0
87
Member Avatar for Alice86

Hi, all.. i'm now using Visual c++ in Visual Studio 2005 for my project. i faced problem in getting other tab value in main tab ..Below are details of my problem. In the main tab control(CTabDialogControl), i have another sub tab . IDD_MACHINE is my other dialog ID while the …

0
60
Member Avatar for skumar.idea

I want to implement according to the following specification: [B][COLOR="red"]FindFirst[/COLOR][/B] Search a directory for a file or subdirectory whose name matches the specified parameter. long FindFirst(LPCTSTR ItemName) Parameters ItemName [in] string that specifies a valid directory or path and file name, which can contain wildcard characters, such as * and …

Member Avatar for dkalita
0
79
Member Avatar for hmortensen

Hi all, Im trying to read an int from a binary file.. (As I have done many times before) [CODE] int chunkLength=0; fileRead.read (reinterpret_cast<char*>(&chunkLength),sizeof(chunkLength)); [/CODE] I know (and can see) that the file contains the bytes 00 00 00 0D, so to the best of my knowledge the int should …

Member Avatar for hmortensen
0
148
Member Avatar for fali

Hi all, I have the following situation: I created a program with Visual C++ 2008 express which receive and interpret data from a µC. Now I want to send this data from the Visual C++ program to an OPC server. Both programs run on the same PC. Therefore I need …

0
49
Member Avatar for I_Empire

i am writing a function to convert fractions to intgers for example: .636 -> 636 or .45 -> 45 [CODE] int ret_int(double input) { while(true) { // this line is for debugging only cout << input << " " << floor(input) << endl; if(input == floor(input)) return input; input = …

Member Avatar for I_Empire
0
150
Member Avatar for selvamellumalai

i am these kind of problems while using embedded vc++. 1.spawning error 2.failed to instantiate platform manager. someone please give me some solutions to solve this.

0
44
Member Avatar for duliprb

Hello , There is a problem with compiling the project of outcall. I want to test it. because i am very interested about project but Before do customisation I wanted to compile it. [url]http://outcall.sourceforge.net/[/url] If there is a good C++ person please help me. Thank you very much. early response …

Member Avatar for duliprb
0
326
Member Avatar for PriusDriver07

Hello, I am wondering if I am chasing my tail, but is it possible to convert the numbers 1-26 to their respective letter of the alphaber by using the call char(1) where it will return the letter a, char(2) will return b, char(c) will return c, etc... Thanks,

Member Avatar for PriusDriver07
0
43

The End.