c语言编程问题。这道题怎么做。请不要用指针_百度知道
c语言编程问题。这道题怎么做。请不要用指针#include void caesar(char s[],int key); int main(void){ int key; char s[100]; while...
C语言字符串指针(指向字符串的指针)_C语言中文网
更改上面的代码,使用指针的方式来输出字符串: #include int main(){ char str[] = "http://c.biancheng.net"; char *pstr = str; int len...