Loading...
Engaged Employer
Swap the order of a string without using indexes.
Anonymous
Small correction to above code end = src + strlen(src) - 1;
guess it is string reversal with out using `[]' void reverse(char * src) { char * end; end = strlen(src) - 1; char t; while(src < end) { t = * src; *src = *end; *end = t; src++; end--; } }
Check out your Company Bowl for anonymous work chats.
Get actionable career advice tailored to you by joining more bowls.
Stay ahead in opportunities and insider tips by following your dream companies.
Get personalized job recommendations and updates by starting your searches.