Here, strcat() is a function which takes two character pointers and returns a character pointer. s : a character pointer append : a pointer to constant character, i.e, we can not change the contents that this pointer points. use of register : if we register for integers they will be stored in CPU registers instead of Memory, so that, fetching will be faster. but, here s and append both are pointers. i don't think that they will be stored in registers. so, register does not play any role here. this function adds the contents of location pointed by append to the end of contents pointed by s and returns the address of first string. thanks, neo johnson
------------------------ Yahoo! Groups Sponsor --------------------~--> Check out the new improvements in Yahoo! Groups email. http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/NhFolB/TM --------------------------------------------------------------------~-> ===================================================== To know more about TWINCLING Society http://www.twincling.org/ OpenSSL - PKI & Digital Certificates Mark your calendar for the TSM Saturday 5pm on 15th July 2006 ===================================================== Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/twincling/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

