GIDForums  

Go Back   GIDForums > Computer Programming Forums
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

C++ Forum

Welcome to the C++ forum.

Browse through the links below to find existing C++ programming language discussions - including source code examples, hints, tips, and tutorials. Example codes are syntax highlighted for your convenience.

If you have just registered or if this is your first time here, and if you wish to include example C++ code in your posts and messages, please surround your example codes in [cpp]...[/cpp] bbcode tags when you submit your messages. This will syntax highlight your CPP / C++ code examples within a post. Please refer to the details here.

Post New Thread
Threads in Forum : C++ Forum Forum Tools Search this Forum
  Rating Thread / Thread Starter Last Post Reverse Sort Order Replies Views
 
by WaltP
Guidelines for Posting Requests for Help version 3.1 GIDForums is pleased to provide these forums to help you understand programming techniques and correct programming problems. Following these guidelines will help you post good questions with enough information that we can understand your...
21-Apr-2005 03:44
by WaltP Go to last post
0 13,662
 
by flander123
Hello, am a beginer in programing, i want to do the function that when i click into .exe made it will set my homepage like i used on that function
26-Sep-2009 02:58
by george135 Go to last post
8 201
 
by linan2332
Hi, I haven written this program and when i compile it,there is no error but it just couldnt run . The program simply just" Press any key to continue . . . ". I think the problem is coming from the "while",but i cant find it. here is the code /* Lin An ENGIN 135 : 9/11/09 */ /* Homework 7 */ /*...
24-Sep-2009 10:19
by linan2332 Go to last post
6 186
 
by bubaduff
I am writing a program where i write two strlen(string length) functions. The first version of the program should use array subscripting, and the second version should use pointers and pointer arithmetic. This is what i have so far; #include <cstring> using std::strlen; int main() { char...
23-Sep-2009 05:59
by Mexican Bob Go to last post
6 239
 
by Lil_blue_dude
I'm writing a program that prompts the user for the sales of 3 stores and then converts the input from the 3 stores into a graph. Example The user enters 1000 for store1, 500 for store2, and 900 for store3 Output should be: Daily Sales (each * = $100) store1: ********** store2: ***** store3:...
23-Sep-2009 03:50
by Mexican Bob Go to last post
7 158
 
by slowcomputer
I know the simple way to calculate the average but I created a table there are 2 columns one is x and the other one is x^2 and the more numbers I type in x it squares them I wanna know how you can take the average of x and x^2
18-Sep-2009 14:13
by slowcomputer Go to last post
4 123
 
by lftenamin
Hi everyone. I'm very very very very very new to programming. I'm in my first programming class here at my college. (I'm studying to be a CS major) . I've never done any programming before, so as simple as this program may be to code, I'm messing up, probbably, some simple things that, hopefully, I...
18-Sep-2009 08:34
by lftenamin Go to last post
8 253
 
by mfmikula
******Hello, all. When I try to make the Qt embedded examples, most of the "makes" fail with numerous errors. The only two examples I have made successfully are buttongroups and popup. ******I am trying to develop on a TS-7300 ARM cpu running kernel 2.4.26-ts11. I configured: ./configure -qconfig...
17-Sep-2009 12:13
by Mexican Bob Go to last post
1 241
 
by LeFromage
I'm trying to use a custom class I made with it's own specification and implementation files and I'm having problems getting it to run properly. I keep getting errors if I try to compile the spec. file. main.cpp #include <iostream> #include <fstream> #include "sumclass2.h" using namespace std;
16-Sep-2009 09:10
by sean_asael Go to last post
6 4,962
 
by jaro
Good day! I have a function that will read a user input and determine if the input is a folder path or a file sample input folder sample input file
15-Sep-2009 20:20
by jaro Go to last post
2 157
Thumbs down
by geoyar
Hi, Suppose I have a function class MyClass; void MyFn(MyClass myClass) { .....
15-Sep-2009 14:14
by geoyar Go to last post
2 153
 
by bubaduff
I am writing a program where i want to overload the multiplication operator to enable multiplication of two complex numbers as in algebra: (a+bi)*(c+di) =(ac-bd)+(ad+bc)i Here's what i've tried so far: // Complex.cpp #include <iostream>
15-Sep-2009 13:56
by fakepoo Go to last post
3 106
 
by muddturtle13
This is very novice programming, just to warn you. It shouldn't be very difficult for those of you out there that are more experienced. Basically, the program boils down to reading a file for input, displaying the raw data to the screen (cout), and then re-writing the raw data to a new output file...
13-Sep-2009 21:53
by Mexican Bob Go to last post
3 100
Smile
by foraswim
Hi guys. I am creating a bag class with a Linkedlist. The aim of the program is to insert a set of words into the LinkedList and for it to return the size and other not important things. I am not sure if i am declaring the LinkedList correctly. there are also two more files node.h and node.cpp,...
10-Sep-2009 12:46
by davekw7x Go to last post
3 176
Smile
by manishsethi
"There is a rectangular room of length l and width w (l and w are integers). The length and width of the room fulfill the relation l=Aw+B, where A and B are given integer constants. The room is divided into square cells of unit dimensions. You have observed that, after adding an integer C to the...
08-Sep-2009 19:05
by David52 Go to last post
5 374
 
by Oli
Hello, I am trying to write a function which can divide number of entries from two variables v1 and v2 (like on a histogram number of entries is y-axis, v is x-axis, v1 and v2 will then refer to the name of the histogram variables where i will use them to fill some histos). In my code, I do the...
08-Sep-2009 06:43
by Oli Go to last post
6 179
 
by pablowablo
Let's say I have a class called Foo having a constant 2D integer array. And I want to initialize its values in the class definition or constructor... How should I do this? I always get an error when I try initializing it in the declaration or in the constructor INITIALIZING IN THE...
05-Sep-2009 13:14
by L7Sqr Go to last post
17 20,308
 
by nowocien
in the code below.. what is the other way of calling the overloaded assignment operator? descriped in the commnets below. Also, this function returns a reference "&", this mean the copy constructor is called, correct? IntlPhoneNumberWS& IntlPhoneNumberWS::operator=(const IntlPhoneNumberWS& s){ ...
04-Sep-2009 10:03
by CPlus2Progammer Go to last post
4 232
 
by ziorus
Hello all, I am trying to add two objects of integers. Object A: 92999 Object B: 22 My add method works when A is being added by B, but not the other way around because the amount of nodes is less. I should know how to add a node but this time I am already at the end of the list, which I thought...
03-Sep-2009 19:51
by ocicat Go to last post
3 168
 
by linan2332
I keep getting cathode!.cpp(11) : error C2143: syntax error : missing ')' before 'constant' cathode!.cpp(11) : error C2059: syntax error : ')' cathode!.cpp(13) : error C2143: syntax error : missing ')' before 'constant' cathode!.cpp(13) : error C2059: syntax error : ')' wats wrong with my...
28-Aug-2009 21:06
by linan2332 Go to last post
10 571
 
by transfrank
Hello, I have developed my own app in Linux and I would like to to a deployment in the sense that another person on another machine go run 'configure' 'make' 'make install'. How do I do that? My IDE is code::blocks, can I use a plugin or something integrated with it? Frank
26-Aug-2009 11:40
by transfrank Go to last post
4 166
Post New Thread

Recent GIDBlogAccepted for Ph.D. program by crystalattice

Display Options Moderators
Showing threads 81 to 100 of 4590 Moderators : 1
Sorted By Sort Order
From The
LuciWiz  
Forum Tools Search this Forum
Search this Forum :

Advanced Search

New posts New posts More than 15 replies or 150 views Hot thread with new posts
No new posts No new posts More than 15 replies or 150 views Hot thread with no new posts
Closed Thread Thread is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 19:16.


vBulletin, Copyright © 2000 - 2009, Jelsoft Enterprises Ltd.