#include<stdio.h> · int main() · { · char str[100]="String Reversed"; · int i = strlen(str)-1; · while(i != -1) · printf("%c"str[i--]); · }.
確定! 回上一頁