逆序共1篇

将读入的字符串str进行逆序后输出

 以下程序的功能是将读入的字符串str进行逆序后输出。#include 'stdio.h'void main(){ char str[100],k;int n,i,j;  gets(str);  n=0;  while(     ①      ) n++;  for(    ...
伊丞的头像-伊丞小站(YLIMHS.COM)钻石会员伊丞
014924