Forum: Kernels and Modules Oct 23rd, 2008 |
| Replies: 11 Views: 3,359 I've used Fedora 8 on my workstation since March. It's stable and robust.
Fedora is used as the development line for RedHat Enterprise Linux. It has a rapid release cycle, while RHEL is very... |
Forum: IT Professionals' Lounge Jul 14th, 2008 |
| Replies: 8 Views: 982 Python is easy to learn and development using it is generally much quicker than with C/C++ or Java. |
Forum: Troubleshooting Dead Machines Jul 14th, 2008 |
| Replies: 5 Views: 786 Check to make sure that your memory is installed correctly. Remove and re-seat DIMMs. You might also want to run a memory test like memtest86. (On-board graphics chips use main memory. Stripes... |
Forum: Kernels and Modules Jul 14th, 2008 |
| Replies: 11 Views: 3,359 http://fedoraproject.org/ |
Forum: C++ Apr 14th, 2008 |
| Replies: 8 Views: 764 Every string is supposed to end with a null byte ('\0'). in concat, are you terminating phrase1 with a null byte when you copy phrase2 to the end of phrase1? In copy, are you stopping at the end of... |
Forum: C++ Apr 14th, 2008 |
| Replies: 5 Views: 1,397 To echo vmanes, I recommend wxWidgets. It is simpler and easier to use than the WinAPI, and it is portable to other platforms. QT is nice, but there are license fees for use on Window. Also, take... |
Forum: C++ Apr 14th, 2008 |
| Replies: 20 Views: 2,269 Every ISO standard C/C++ program must have a main(). Windows, other graphic environments, and many embedded systems have a non-standard environment and may not need a main().
So, the answer is:... |