首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴LiangLI的代码贴C语言
#include<stdio.h>
#include<string.h>
#include<stdlib.h> 
#define LENGTH 81
int main()
{
char mystr[LENGTH];
int mychar=0;
FILE *pfile=NULL;
char *filename="myfile.txt";

printf("Enter an interesting string of up to %d characters:\n",LENGTH-1);
......................
阅读全部 | 2016年6月16日 21:05
1
LiangLI