Language Ccpp Cref Examples Reverse.c

/ *********************************************************************
 *
 * Purpose: Reverse characters in a string.
 * Author: K&R
 * Date: 
 *
 *********************************************************************/
void reverse(char s[]);
main()
{
 char text[80]="martin";
 printf("string is %s\n", text);
 reverse(text);
 printf("string is %s\n", text);
}
void reverse(char s[])
{
 int c, i, j;
 
 for (i=0, j=strlen(s)-1; i < j;i++, j--)
 {
 c = s[i];
 s[i] = s [j];
 s[j] = c;
 }
}

file: /Techref/language/ccpp/cref/EXAMPLES/reverse.c, 0KB, , updated: 1997年4月21日 09:52, local time: 2025年9月4日 07:17,
40.74.122.252:LOG IN

©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://techref.massmind.org/techref/language/ccpp/cref/EXAMPLES/reverse.c"> language ccpp cref EXAMPLES reverse</A>

Did you find what you needed?

Welcome to massmind.org!

Welcome to techref.massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /