Just to get a feel for the kind of code you write, perhaps you could take this little challenge:
Write a C routine with the
following prototype:
void condense_by_removing(
char *z_terminated ,
char char_to_remove
);
Your routine should modify
the given zero-terminated
string in place, removing
all instances of the given
char.
If you're brave you can post your code here ...Apart from that, the challenge is to decide what kind of job you want, then make sure you develop a resume to get it. If you want a web developer job then you have to write some web apps. If you want a systems programmer job then you need to write some slick algorithmic code.
Do you know what a B-tree is and when you would use it?