Sollicitatievraag bij Qualcomm

Write a shortest string copy function.

Antwoorden op sollicitatievragen

Anoniem

19 jun 2009

while(str++ = dst++) {}

4

Anoniem

5 mrt 2010

I should be like the following. while (*str++ = *dst++) {}

1

Anoniem

6 apr 2010

or simplified to: while(*xptr++ = *yptr++);