Pergunta de entrevista da empresa AMD

Reverse words in a char array in place, use C.

Resposta da entrevista

Sigiloso

20 de nov. de 2016

This can be done by finding individual words in string and reversing characters in each, and then reversing characters in the resulting string. 1) Write generic function to reverse characters in any string, given start and end. 2) Go thought original string, look for space marking end of word and beginning of next, reverse characters 3) Reverse characters in the resulting string