Write a C program to rotate an array left by n places. #include <stdio.h> #define MAX 256 int main() { int i, j, n, tmp, shift, data[MAX];
確定! 回上一頁