Frage im Vorstellungsgespräch bei MongoDB

Convert an integer to a string in C without using any libraries or casting

Antwort im Vorstellungsgespräch

Anonym

19. Nov. 2014

Key was to use char c = '0' + x where x is an int then concat all chars to form char array (string)