Forum: USB Devices and other Peripherals Apr 25th, 2005 |
| Replies: 1 Views: 7,623 I have a laptop that has a cdrw/dvdrom drive that suddenly stopped working. i looked in the device manager and the drive is not even listed to be on the computer. I dont understand this considering... |
Forum: C++ Mar 2nd, 2005 |
| Replies: 2 Views: 23,421 i keep getting error messages when i try to build my program:
EmpType.obj : error LNK2001: unresolved external symbol "public: __thiscall SortedType::SortedType(void)" (??0SortedType@@QAE@XZ)
... |
Forum: C++ Mar 2nd, 2005 |
| Replies: 3 Views: 1,720 I dont understand what u exactly want me to do but here is the other header:
Thanks
#include "ItemType.h"
// File ItemType.h must be provided by the user of this class.
// ItemType.h must... |
Forum: C++ Mar 2nd, 2005 |
| Replies: 3 Views: 1,720 I keep getting this error message and I cant figure out how to fix it. Im not sure whether I have been trying to fix it for to long or somehting that maybe im not seeing the problem:
... |
Forum: Computer Science Mar 2nd, 2005 |
| Replies: 1 Views: 4,252 Floating Point Representation:
I have to convert 21.426304 into an Unnormalized number. It has to be 16 bits long with a 1 bit sign, 5 bit exponent, and a 10 bit sinificand. I understand that... |
Forum: C Mar 1st, 2005 |
| Replies: 1 Views: 2,124 I keep getting this error message about intializing a varible as a string type:
`string' does not name a type
I cant figure out how to get rid of it even though i have #include<string>... |
Forum: Computer Science Feb 27th, 2005 |
| Replies: 0 Views: 3,740 I am trying to understand Excess 127. I have a homework assignment that asks me to use excess 127 on the numbers 127 and -81.
any help in understanding how to do excess 127 would be a lot of... |
Forum: Computer Science Feb 23rd, 2005 |
| Replies: 1 Views: 4,775 I have a homework assignment dealing with binary numbers and integer representation:
one of the questions is that I have to represent 127 and -81 in signed magnitude.
any help on understanding... |
Forum: C++ Feb 2nd, 2005 |
| Replies: 1 Views: 2,079 I keep getting an error message when i try to run this program. It says he error is located at the cin >> fileName line in the load function. Any help would be great thanks:
error C2679: binary... |
Forum: C++ Feb 1st, 2005 |
| Replies: 2 Views: 6,403 Im getting some interesting error messages when i try to compile my program here is the error messages:
expected unqualified-id before "namespace"
expected `,' or `;' before... |
Forum: C++ Jan 31st, 2005 |
| Replies: 3 Views: 2,602 thanks but now im getting this error about by fuctions:
error C2664: 'Load' : cannot convert parameter 1 from 'float' to 'float [][100]'
There is no context in which this conversion is... |
Forum: C++ Jan 31st, 2005 |
| Replies: 3 Views: 2,602 i get a couple error messages when i try to compile this program...I dont understand how to fix them and i was hoping for some help.....The error messages i get are:
error C2146: syntax error :... |
Forum: C++ Jan 31st, 2005 |
| Replies: 1 Views: 3,133 im trying to insert a number into an array but when i insert a number it deletes the last number instead of increasing the array size by one....this is the code i have:
void Insertion(float... |
Forum: C++ Jan 30th, 2005 |
| Replies: 1 Views: 5,625 im trying to insert a number into an array but when i insert a number it deletes the last number instead of increasing the array size by one....this is the code i have:
void Insertion(float... |
Forum: C Jan 30th, 2005 |
| Replies: 2 Views: 6,781 help!
im trying to input data from a file into an array. I cant figure it out...this is what i have:
inData.open(fileName.c_str());
int i=0;
... |