指针的简单应用
摘要:
题目:http://acm.swust.edu.cn/oj/problem/448/在本题中我实现了用指针读入字符串的功能。并通过指针的操作来实现本题的功能。View Code #include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ char *str, *p; char *sen, *sp; char ch; p = (char *)malloc(sizeof(char)); str = p; while(scanf("%c", &ch)!=EOF){ i 阅读全文
posted @ 2012-05-06 19:56 More study needed. 阅读(192) 评论(0) 推荐(0) 编辑