| |
Rating
Thread /
Thread Starter
|
Last Post  |
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
|
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
|
|
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 */
/*...
|
|
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...
|
|
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:...
|
|
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
|
|
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...
|
|
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...
|
|
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;
|
|
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
|
2 |
157 |
|
 |
by geoyar
Hi,
Suppose I have a function
class MyClass;
void MyFn(MyClass myClass)
{
.....
|
|
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>
|
|
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...
|
|
3 |
100 |
|
 |
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,...
|
|
3 |
176 |
|
 |
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...
|
|
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
|
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
|
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){
...
|
|
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...
|
|
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...
|
|
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
|
|
4 |
166 |