49,757 Topics

Member Avatar for
Member Avatar for ohhmygod

Hey guys i have a small question here. [CODE] float angle0; printf("\nEnter Original Attack Angle Value in Degree: "); //input angle scanf("%f", &angle0); while(angle0<-180 || angle0>180) { printf("\nEnter Valid Original Attack Angle Value in Degree: "); scanf("%f", &angle0); } [/CODE] i dont get it when i put in 180 it …

Member Avatar for ohhmygod
0
91
Member Avatar for Aamit

Hi.. I want to read and display bios password.I am using phonix award bios v6.00pg version ATi -42302e31 bios Date 04/20/06. operating system-- Xp i can not find actual address where bios password stored in bios chip. if password is set retrieve it and display. Plz tell me is 1d …

Member Avatar for jbennet
0
130
Member Avatar for mrgreen108

After looking at the same few lines for an hour now, I cannot figure out why the user named input file isn't opening and the user named output file isn't even being created. I used the debugger in visual studio 05 to figure out the input file isn't being opened …

Member Avatar for mrgreen108
0
245
Member Avatar for marti3a3

I'm trying to write a program that prompts a user for a radius value, then uses class data to return info of a sphere based on that radius. I believe my problem lies in declaring what information goes into what class member, but I'm not entirely sure. How do I …

Member Avatar for Ancient Dragon
0
92
Member Avatar for pmsilva

Hi, I need to find an expression evaluator for C/C++ able to support my own functions and my own data type definitions. - the expression will typically be parsed once but evaluated many times - the expression result may be of any type, not always float - the expression arguments …

0
48
Member Avatar for Mark515

Could someone tell me the code for a timer like 60 seconds from when the first input is? Also code for a user not being able to enter a password for 1 hour if they have inserted it incorrect? thanks guys

Member Avatar for Ancient Dragon
0
105
Member Avatar for Seamus McCarthy

[code] const int capacity2 = 120; int rows[capacity2]; for (int i = 0; i < capacity2; i++) { if ( x == 11) { rows[i] = 1; break; } else if ( x == 13) { rows[i] = 2; break; } else if ( x == 15) { rows[i] = …

Member Avatar for Seamus McCarthy
0
95
Member Avatar for Seamus McCarthy

[code= c++] #include <iostream> using namespace std; int main() { char A,B,C,D; const char capacity = 120; char letter[capacity]; int pax = 0; int y =6; for (int i = 0; i < capacity; i++) { if ( y == 6) { char letter[] = {A}; pax++; break; } else …

Member Avatar for Seamus McCarthy
0
102
Member Avatar for lAmoebal

Is there a way to copy a whole smaller array into a section of a larger array? For example, if I have an array of 4 characters, and an array of 16, can I copy the 4 characters into the first 4 of the array of 16. Then another 4 …

Member Avatar for Ancient Dragon
0
138
Member Avatar for Mark515

Im trying to find the average of three numbers however it only rounds it to the nearest whole number. What code can i use to get the exact number? For example at the minute it would add 2 + 3 + 2. The outcome would be 2 but i would …

Member Avatar for Ancient Dragon
0
72
Member Avatar for jesseb07

hello, I'm working on a personal project and I was looking for some help. I am writing a program that needs to store user profiles in an external file (.user_data.dat). Problem is that anyone with half a brain can find the file and with any text editor look at the …

Member Avatar for jesseb07
0
101
Member Avatar for Black Magic

Hey guys, i was bored so made a money converter, nothing is wrong with errors etc in the code but when i run my program, the pound sign is not valid, it comes up as a u with a accent on top, please help. [CODE=C++]#include <iostream> #include <conio.h> using namespace …

Member Avatar for Ancient Dragon
0
102
Member Avatar for CoolGamer48

Hey, I keep getting this error: error LNK2019: unresolved external symbol "public: struct IDirect3DDevice9 * __thiscall Engine::GetDevice(void)" when I try to compile my project. MSDN says that IDirect3DDevice9 uses d3d9.lib, but it still won't work even with that lib in additional dependencies. (using VC++ 2008) I tried linking to a …

Member Avatar for CoolGamer48
0
122
Member Avatar for nilesh03

Hi... I just wanted to know how quick sort works... I've got to use it in my assignment, please explain it to me... Thank you...

Member Avatar for hammerhead
0
86
Member Avatar for TuX4020

Hi all, this is my first post here and it comes out of frustration more than anything. I've been searching high and low for any insight into my problem and still can't seem to get it right. In the interest of full disclosure, this is a part of a homework …

Member Avatar for TuX4020
0
3K
Member Avatar for paolomontero

Hi Im having a problem with the following piece of code: #include <iostream> using namespace std; #define something 33; void main() { if (33 == something) { cout << "equals" << endl; } } Im using Visual C++ 2008 (not Express) and I get 2 errors and 1 warning when …

Member Avatar for Salem
0
84
Member Avatar for redclay34

Hi, Does anyone know if there is someway to write something harmless to \\.\PhysicalDrive0 in Windows XP? I have successfully used the ReadFile and would like to try the WriteFile, but then I'd have to find something safe to write to it. Any help would be appreciated. Best regards, MiCo

Member Avatar for Salem
0
82
Member Avatar for noey699

this should b realitivly easy to answer but i need to know how to ask a use for an address to a program (example C:\Program Files\....) then have C++ open it up. all i really need to know is the code required to open the program (the programs intended to …

Member Avatar for Salem
0
173
Member Avatar for amit chaudhary

hi, can any one help me ,i want to access pc serial port through c++ or vc++ built in classes

Member Avatar for Salem
0
108
Member Avatar for scapu

Please i am not getting flow and i am new to C++. Can any body help in this program. C++ program to convert an octal number to decimal and from decimal back to octal. [code=cplusplus] #include <iostream> #include <math.h> using namespace std; void octtodec(); void dectooct(); int main() { void …

Member Avatar for William Hemsworth
0
99
Member Avatar for Jboy05

How do I write a C++ function void ShiftRight (int A[], int m, int n) to shift all elements in the array A to the right m places. Array A has n elements. For instance, if ARY array has {1,2,3,4,5}, calling ShiftRight(ARY, 2, 5) will change the contents of ARY …

Member Avatar for Nick Evan
0
220
Member Avatar for savinki

I want to convert a character to hexadecimal value. and that value should be a unsigned char value. e.g. unsigned char a[16] = {0x00,0x44,...}; this is the code segment i wrote. but its not working properly. unsigned char a1= 'D'; unsigned char a[4] ; unsigned char temp[16]; sprintf((char *)a,"0x%02X",a1); cout<<a; …

Member Avatar for Narue
0
87
Member Avatar for ok555

hi, i need help.. i have been working for about 4 hours trying to figure this out and im still lost.. the answer is probably simple but im new to c++ so please forgive me. off a site called informit, the following code is posted: [code] #define NELEMS(A) (sizeof(A) / …

Member Avatar for ok555
0
180
Member Avatar for mussa187

The command line parameters will consist of a DNS command and then a number of IP-URI string pairs, the dns command is always a single letter followed by a search string. A string pairs is always ip address then uri which must be placed in the dns store. these are …

Member Avatar for mussa187
0
137
Member Avatar for mussa187

The command line parameters will consist of a DNS command and then a number of IP-URI string pairs. The DNS command is always a single letter followed by a search string. A string pairs is always IP address then URI which must be placed in the DNS store. The example …

Member Avatar for mussa187
0
125
Member Avatar for khangwelo

i'm having a problem with my assignment. here is question!!!!!!!!!!!! The company ABC is developing different puzzles for their customers, and need to make the puzzles as complex as possible, but for a start it wants to test their smaller type of application. You are required to develop an application …

Member Avatar for iamthwee
0
86
Member Avatar for bojanski

Hello everyone. First, i'd like to introduce myself, would be very rude to just jump in here :) I'm Bojan, student, 1. year, Croatia, and in this semester i've got a class "Programming 1". Here we're doing C++ (in Visual C++). And the idea of the class is to make …

Member Avatar for bojanski
0
124
Member Avatar for jdphenix

Hello. I'm a C++ newbie and am trying to make a functional console RPG game as a hobby project. The code I'm having a problem with allows the players to move through rooms, similar to an old text adventure game. I realize it's probably inefficient, but I've only been learning …

Member Avatar for Agni
0
306
Member Avatar for Yellowdog428

OK so most can guess I am a student just now learning programming and starting out with C++. I have tried many compilers and IDE's and have settled on Eclipse for now. I do not want to start a What compiler/IDE do you use, but I am trying to figure …

Member Avatar for Yellowdog428
0
109
Member Avatar for hsma

#include <cstdlib> #include <iostream> #include <fstream> using namespace std; int main(int argc, char *argv[]) { string f, o, i, file_c, file_d; ifstream fin; ofstream fout; f = "in.txt"; o = "out.txt"; cout << "Input filename" << endl; cin >> i; file_c = i + f; file_d = i + o; …

Member Avatar for hsma
0
143

The End.