<font face="Verdana, Arial" size="2">Originally posted by [CrimsonGhost]:For anyone interest AIB have an absolutely great graduate recruitment scheme for programmer type people. Offering 15k a year with extensive training (read: you'll get to do some mcse's).</font>
<font face="Verdana, Arial" size="2">Originally posted by Draco: Heh - I've hear £25K is the average this year...</font>
<font face="Verdana, Arial" size="2">Originally posted by [CrimsonGhost]: Hmm, not what I heard, least not for graduate recruitment. I'll check though, my fiancee is working in an AIB branch and all job offers are sent to all staff first, i'll ask her to get me details of jobs posted over the last few months and check and get back to you on it.</font>
char *itoa(int i, int radix) { int negative = 0; int count = 0; int temp; char *buffer; if( i < 0 ) { count++; negative = 1; i = abs(i); } temp = i; do { /* count the digits, save lots of malloc()s and other ****** */ temp /= radix; count++; } while( temp > 0 ); buffer = malloc(count * sizeof(char) ); if ( buffer == NULL ) return NULL; do { buffer[count-1] = (char) (i % radix) + '0'; i /= radix; } while(count--); if(negative) buffer[0] = '-'; return buffer; }
<font face="Verdana, Arial" size="2">Originally posted by Jazz:I'm pretty sure sprintf() would count as a library call</font>
<font face="Verdana, Arial" size="2">Originally posted by Draco: Originally posted by [CrimsonGhost]: Hmm, not what I heard, least not for graduate recruitment. I'll check though, my fiancee is working in an AIB branch and all job offers are sent to all staff first, i'll ask her to get me details of jobs posted over the last few months and check and get back to you on it.</font> I didn't mean in AIB, I ment in the recruitment market in general.
Originally posted by [CrimsonGhost]: Hmm, not what I heard, least not for graduate recruitment. I'll check though, my fiancee is working in an AIB branch and all job offers are sent to all staff first, i'll ask her to get me details of jobs posted over the last few months and check and get back to you on it.</font>
<font face="Verdana, Arial" size="2">Originally posted by Trojan:Just thinking about algorithms, wondering how often developers actually need to analyse the algorithms put to use in everyday coding.</font>
<font face="Verdana, Arial" size="2"> - Are you aware of the algorithms you are using? </font>