摘要: /*Sample code to read in test cases:*/#include <stdio.h>#include <stdlib.h>#define NUM 1024int main(){ FILE * pFile; char mystring[NUM]; char sysInputFile[] = "{sysFileUrl}"; int sum; pFile = fopen(sysInputFile, "r"); sum=0; while (fgets(mystring, NUM, pFile)) { if (m 阅读全文
posted @ 2013-03-18 08:14 shijiwomen 阅读(131) 评论(0) 推荐(0) 编辑