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,664
 
by veronicak5678
I need to write program that inputs a scrambled word and compares it against a pre-determined list of words. I am first checking for length, then if a match is found, sending them to a function to compare the letters. I can't seem to get the loops right. Here is what I have so far: #include...
22-Feb-2008 11:12
by veronicak5678 Go to last post
4 366
 
by Kreagen
Any assistance that could be given in this would be so greatly appreciated. I need to write app that asks a user for the package selection month of usage and hours used, and authenticate then month and hour input, this is what I have thus far but and stumped of weather or not to: A us If statments...
21-Feb-2008 22:48
by Kreagen Go to last post
4 201
 
by Mr_Peepers
Currently I need to read data from a file, such like this Measurements for Lansing, Michigan during April, 2000 63 32 0.00 54 43 0.10 59 39 0.00 46 24 0.00 52 20 0.00 54 30 0.00
21-Feb-2008 20:22
by davis Go to last post
8 367
 
by kvidya
Hi, I get the following error with the code below: In member function 'T* LoadManager::Find<const char*>': error: expected primary-expression before ';' token --------------------------------------------------------- template<typename T> T* LoadManager::Find( const char* objectName )
21-Feb-2008 17:22
by kvidya Go to last post
0 202
 
by monkeeass83
Can someone help me with a sudoku recursive algorithm. The requirements of the function is that it must first try to solve the puzzle from the inputs the user has entered. If it is not solvable after the user has entered values, then it must display a message saying that it is not solvable and go...
21-Feb-2008 12:34
by davekw7x Go to last post
3 418
 
by giugio
I would create a Information system application on a civil/structural project written in C++ MFC. I have a list of beam, frame and shell objects (in some collections) with a lot of properties I would to select and update this collections on the fly. I read some on in-memory databases what are the...
21-Feb-2008 11:14
by davis Go to last post
10 1,391
 
by meili100
What are the differences between them? Or they are the same.
20-Feb-2008 22:24
by davekw7x Go to last post
1 6,399
Question
by msbolduc
Hello, I have a folder with approx. one thousand *.csv files and am trying to figure an easy way of opening each file in sequence, 1 at a time, extracting a few fields, doing a few calculations then writing them to a new *.csv file. My entire program works great and is easy to use for the few files...
20-Feb-2008 18:01
by WaltP Go to last post
3 1,628
 
by monkeeass83
I need help with erasing and inserting in 2D vectors. I would just use a 2-D array, but the assignment specifically says no arrays. I am trying to write code for a sudoku program. An example of the input is below: 1 0 0 6 0 8 0 3 0 0 2 0 0 4 0 9 0 7 0 0 3 0 0 7 0 6 0 2 0 0 4 0 0 1 0 8 0 9 0 0 5...
20-Feb-2008 14:24
by monkeeass83 Go to last post
4 286
Question
by rohit83.ken
is there any way or any software available to produce c/c++ code from the flowcharts or, pseudocodes or ,algorithims can any one provide the links or any information prethanks to helper
20-Feb-2008 04:37
by davis Go to last post
1 572
 
by jrod738776
Ok well I'm trying to make a program that uses the pi formula and outputs 3 different answers. The formula is p = 4*(1 - (1/2i-1) + (1/2i+1). The 3 answers I need to output are when i = 100, 1000, and 100000. I need to start with i = 2 and each time through the loop another 2 gets added to i and...
19-Feb-2008 17:56
by davis Go to last post
1 256
 
by meili100
string x = "test1"; switch(x){ case "test1" : break; case "test2" : break; default : break; } Why this doesn't work for the string?
19-Feb-2008 17:53
by davekw7x Go to last post
1 820
 
by Tekker
So I had this working until I added the case statement to define the numbers of hours in the months. The math's right and aside from the "ifs" not recognizing the else, the only problem is the first case. //Internet Program #include "stdafx.h" #include <iostream> using namespace std; int main() {
19-Feb-2008 11:15
by Tekker Go to last post
7 310
 
by takachi
Hello! I am new to the c++ programing style and as my first exercise I wrote a code for the cpp file of a class which I am supposed to write. the class is supposed to hold an expression which consists of brackets and the 4 basic operators: +,-,*,/. one of the functions which the class contains is...
18-Feb-2008 13:36
by davekw7x Go to last post
12 445
 
by sgies
I am looking for a solution of parsing data in C language, I have attached the code below with some comments in it. What actually I am looking for not to call the sscanf function with the number data is available (In this it is 3) as it is random and can be anywhere between 0 to...
18-Feb-2008 10:33
by sgies Go to last post
0 268
 
by Raddie
i was used to with the programming language FORTRAN, but i gotta generate random numbers in devcpp... i heard that there is a inbuilt rand() function in c... i just wanted the coding which will generate the random numbers in devcpp using this inbuilt function.... actually i had tried myself to do...
18-Feb-2008 02:21
by WaltP Go to last post
3 1,299
 
by shampaynes
my teacher gave me an assignment to complete the blackjack program but I have little understanding of it. I have the majority of it but i'm missing pieces. NOTE: All of the sections where it says TO DO are the missing pieces. PLEASE HELP. #include <stdio.h> #include <stdlib.h> #include <time.h>
17-Feb-2008 17:28
by davekw7x Go to last post
1 210
 
by partnole
void runProgram() { string command; do while(command!="QUIT") cout<< ">"<<endl; cin>> command; if (command == " ")
17-Feb-2008 14:24
by davekw7x Go to last post
6 242
 
by utdemir
How can the program understand the variable is a number or a char?
15-Feb-2008 08:49
by utdemir Go to last post
7 306
 
by stburge
I need a little help developing a recursive solution. I've worked all the way down to the base case but I'm not working back up in the proper way. Once I work down to the base case I want to add the lowest value of two seperate array elements. Code : int JumpIt(const int gameBoard, const int...
14-Feb-2008 19:55
by stburge Go to last post
2 310
Post New Thread

Recent GIDBlogOnce again, no time for hobbies by crystalattice

Display Options Moderators
Showing threads 1001 to 1020 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 02:07.


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