Forum: C Jul 16th, 2004 |
| Replies: 5 Views: 5,481 Actually i was asking about integers, not string char. by given integers 012345, how can i actually reverse it? ..... |
Forum: C Jul 14th, 2004 |
| Replies: 5 Views: 5,481 How can i write the coding for a reversive of a given integers.
for example:
char str[] = "012345";
Reverse( str );
printf( str );
then the output will be displayed as "543210" |