49,761 Topics
| |
Hi How should i identify the operating system on which my program is running in c++. Kindly help | |
Is there are different between List x; and List x(); in C++ | |
I've just started a C++ class so I am a total beginner at this. I am having a problem figuring out how to pass by reference, and pass by value using the enum data type. The data types are as follows: enum suits {hearts, spades, diamonds, clubs} enum cardValues{two=2, three, … | |
Im am making my first game and one of the files just won't compile. I keep getting this error whenever I try to compile this file (this is only the problem part): [code] if (answer[0] == 'y') { if (player->GetGold >= 10) // PROBLEM { player->SpendGold(10); cout << "You find … | |
Hey, just wanna say thanks in advance with the help. [code] void backwards(struct node *headp){ int n=0; /* length */ int i,j; /* counters */ struct node *p=headp; /* find length */ while( p->next !=NULL ) { n++; p=p->next; } printf(“%d\n”, p->number); /* print TAIL */ for(i=n-1; i>=1; i--) { … | |
I'm wiring a program where I have a file with city, state, population size laid out as follows; 24 El Paso, TX 577415 Indianapolis, IN 783612 Detroit, MI 925051 Fort Worth, TX 567516 Los Angeles, CA 3798981 Washington, DC 570898 etc... with 24 being the number of elements in the … | |
Hello, I've nearly finished writing a program that converts Roman to arabic numbers, but i've run into a problem to do with the "Batch Mode" of the program. The batch mode involves asking the user to type in the file name (a text file) which contains Roman numerals that need … | |
Hi, I am trying to write a linux code which will listen on a UDP port and revceive messages from Zyxel modems. (Zyxel modems have a remote packet tracing feature which uses UDP) I achieved most of the task. The received packet is assigned to a string (char[1024]) variable. But … | |
Am trying to write a structure to store weather data for a particular month. total rainfall High temp Low temp Average temp Am trying to calculation but not getting anywhere. I need help please. (1)Not sure how to add the 12 rainfall to get the total rainfall and the average … | |
hi..can u help me give an info on how to load an image(eg. .bmp,.jpeg etc) in c++ turbo and display it into 2D array.thank you so much for the help..really appreciate it. | |
[code=c++] #include<stdio.h> #include<conio.h> #include<alloc.h> #include"C:\windows\desktop\input.h" #define MAXBITS 32 #define MAXNODES 512 #define MAXSYMBS 256 int hmin(void); void hinsert(int,int); //First structure struct codetype{ int bits[MAXBITS]; int startpos; }; //second structure struct nodetype{ int freq; int father; int isleft; }; //The structure defined typedef struct hlist{ int pos; int hfreq; struct hlist … | |
i have sorting program, it works well when coded in simple way but when used recursion it give the floating exception (core dumped), it have tries to debug and it show error in the division stage, it tires to do typecasting also, but does not work out for recursion [code=c++] … | |
my question is basically why shall we use destructor in c++? | |
hi all i have a integer array of fixed max size(assume 100). But the actual number of stored integers are less than max value(assume 50).Because it is change dynamically. How can i get the actual number of integers stored in the array. regards wijitha | |
Hi, I am accessing MBR to get the first 512bytes from hard disk by using absread() function in C programming. But it is showing error: "you are executing a program which directly accessing the hard disk and it works improper. Close to terminate the program". If i ignore that then … | |
my teacher said that it is easy to learn jave when you already know how to program in c++.. why is is it so? whats the difference and similarity of both languages... thanks.....:-/ | |
can you please help me how to convert characters to binary... for example: you have to convert the word "hello world" to its binary form... i dont know how to do... can you please give me some advice... | |
Hi Experts, What kind of tool do you use to unit test your C++ code in your project ? | |
Alright, in this situation I want to take a program that I wrote and modify it so it can take an integers and if any of the numbers are negative, it returns a negative number, but if all the numbers are positive, it returns their average. This is the program … | |
I am writing a program to convert ints to roman numerals. this is the function that gets called when the user enters a number. it works just fine for number 1-99, but then it will either crash, or give bogus data for any numbers higher that 99. any pointers as … | |
Here is my problem. I have searched everywhere for help on this one. I haven't found any. So, I sat down and tried the best I could to write this code: Now I am stuck: Here is what I have so far: [code] #include <iostream> #include <iomanip> #include <fstream> using … | |
Hello there, do you have any idea how to get the user default language code id using standard library functions? There is in win32 (GetUserDefaultLCID) but I have to port it into the linux platform. Thanks :) | |
Hey guys, I am trying to create a number triangle that looks like this. 123456789 12345678 1234567 123456 12345 1234 123 12 1 This is where I'm at: [CODE]#include <iostream> using namespace std; int main () { int limit; // Read limit cout << "Please enter a number between 1 … | |
a C++ program that calculates the number of times a given substring is found in an input string. Please, check carefully the list standard C-string functions, and decide which of them can be utilized to solve the task. Example: consider a string “tank capacity was measured many times” to search … | |
I'm trying to get the CreateProcessA function to work, but it continues giving me trouble and more trouble. Here's the code: [CODE]#include <iostream> #include <string> #include <windows.h> // CreateFile(), CreateProcess(), OpenFile(), etc. and // STARTUPINFO, PROCESS_INFORMATION #include <ctime> // srand(), time(NULL) #include <cstdlib> // rand() using namespace std; string execute(const … | |
Is there any way to do a permutation program with conditions.. like enter "n" girls and "m" boys can stand in a line but without two girls standind together or something like that... is there any algorithm to do this.. Thanks in advance. | |
Could someone help me with this code, I have syntax errors it appears. Here is the compiler's output: root@bowser03:/usr/include# gcc ouija.c -o ouja ouija.c:430: error: expected declaration specifiers or '...' before 'fp' ouija.c:432: error: expected declaration specifiers or '...' before 'fprintf' ouija.c:435: error: expected declaration specifiers or '...' before 'while' … | |
If I have this main: [CODE] { Matrix m1(3,3), m2(3,6), m3; Matrix m4(2,3); m1 = m1 + m2; m1.print(); m3 = m1 * m2; m3.print(); } [/CODE] then how do I need to adjust this implementation file to work with it!?(Right now I'm just trying to get the '+' '=' … | |
I'm writing a simple complex number class in c++ and we're supposed to overload the four arithmetic operators to work on complex+-/*complex, complex+-*/double, and double+-*/complex. This is easy enough, but I wanted to try and make it a little more generic and instead of coding for doubles, extending the functionality … | |
Here is my code, it is suppose to take the double num, round it, and return it using call by reference, but when i try to compile it gives me an ambiguity error at [inlinecode]round(i);[/inlinecode]. please help. [CODE=c++]#include <iostream> #include <cmath> using namespace std; void round(double &num); int main() { … |
The End.