Forum: *nix Software Oct 21st, 2005 |
| Replies: 3 Views: 7,730 Download this library and install it: download.fedora.redhat.com/pub/fedora/linux/core/4/x86_64/os/Fedora/RPMS/libpng10-1.0.18-2.i386.rpm
Also, for divx you can use xine, vlc and a lot of other... |
Forum: C++ Feb 23rd, 2005 |
| Replies: 4 Views: 5,706 Don't use void main; it's always int
while(name != "end");
{
..........
The while statements never ends with a semicolon.
You are comparing in fact 2 strings (or char arrays); for this, you... |
Forum: C++ Feb 11th, 2005 |
| Replies: 14 Views: 7,673 Instead of
if (hours_worked > 0 , hours_worked < 40)
you need
if (hours_worked <= 40)
because you reach this statement only if hours_worked > 0 (tested in the while loop)
The... |
Forum: C++ Feb 4th, 2005 |
| Replies: 14 Views: 7,673 Yes, I know I was missing somethig :cheesy: Thx, vegaseat :D |
Forum: C++ Feb 4th, 2005 |
| Replies: 14 Views: 7,673 If you want your program to run more than once (the while loop), you should put
cout << "\nInput hours worked(0 to quit):";
cin >> hours_worked;
inside the loop:
do
{
cout << "\nInput... |
Forum: C++ Jan 25th, 2005 |
| Replies: 12 Views: 58,330 Did you tested it? I really doubt about that... |
Forum: C++ Jan 4th, 2005 |
| Replies: 21 Views: 6,751 Sorry, my bad, I wasn't paying attention. |
Forum: C++ Jan 4th, 2005 |
| Replies: 21 Views: 6,751 First, use [ code ] [/ code ] tags (not <code>)
>>int ptr[n];
Don't declare an array with undefined dimention. |
Forum: C Dec 15th, 2004 |
| Replies: 3 Views: 3,897 int rename (const char *oldname, const char *newname)
The rename function renames the file oldname to newname. The file formerly accessible under the name oldname is afterwards accessible as... |
Forum: C++ Dec 14th, 2004 |
| Replies: 4 Views: 2,355 >>I have asked this question before and have not gotten a completely useful answer.
I saw your previous post, and also the answers to that post. There were some useful ideas, that you could apply... |
Forum: C++ Dec 6th, 2004 |
| Replies: 12 Views: 58,330 Read this:
http://www.daniweb.com/techtalkforums/thread13532-system%28cls%29.html |
Forum: Windows NT / 2000 / XP Nov 26th, 2004 |
| Replies: 4 Views: 7,283 Try reinstall the drivers on the workstation. |
Forum: Web Browsers Nov 23rd, 2004 |
| Replies: 3 Views: 1,935 >>LOL. It's not a new browser. It's merely a new shell around IE, a skin if you like.
I doubt about that... as long as I know, Firefox is made by Mozilla, and this has nothing to do with Internet... |