c:c_reverse
C - C++ Reverse
#include <iostream> #include <string> #include <cassert> #include <algorithm> // For reverse algorithm using namespace std; int main() { char array1[] = "abc"; int N1 = strlen(array1); reverse(&array1[0], &array1[N1]); assert (string(array1) == "cba"); return 0; }
c/c_reverse.txt · Last modified: 2020/07/15 09:30 by 127.0.0.1