Forum: Computer Science Dec 21st, 2005 |
| Replies: 12 Views: 4,113 www.physicsforums.com
go to the homework forums - there is a calc section for textbook and homework problems. |
Forum: Computer Science Dec 9th, 2005 |
| Replies: 2 Views: 2,157 Try some local contract work. Or take on a pro-Bono project for Salvation Army or something. Startup companies are far more likely to hire you as well.
The reason things are like this is... |
Forum: Computer Science Dec 2nd, 2005 |
| Replies: 2 Views: 1,520 Chris is right - the answer is totally language dependent. In general there no functions like that in most high level languages, some databases provide that capability, as do a few specialy... |
Forum: Computer Science Nov 18th, 2005 |
| Replies: 3 Views: 2,056 #include <unistd.h>
#include <errno.h>
int change_priority(int value)
{
int retval=0;
errno=0;
retval=nice(value);
if(errno && retval=(-1) )
{ |
Forum: Computer Science Nov 16th, 2005 |
| Replies: 2 Views: 4,714 the functions count_char and test_letter_content are from
something else, but they provide:
an example of changing case
a way to compare the letter content of two char arrays
I put a... |
Forum: Computer Science Nov 15th, 2005 |
| Replies: 3 Views: 2,056 That is Os dependant - what OS? |
Forum: Computer Science Nov 15th, 2005 |
| Replies: 3 Views: 2,862 It is IT management and possibly some system admin or maybe DBA stuff - infrastructure support in general.
Software development and maintenance are sort of tangential to your field of study.
In... |