博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《c程序设计语言》读书笔记--统计总的字符数,打印能打印的最多字符
阅读量:6610 次
发布时间:2019-06-24

本文共 835 字,大约阅读时间需要 2 分钟。

#include 
#define MAXLINE 10int getline(char line[],int maxline);void copy(char to[],char from[]);int main(){ int len; int max; char line[MAXLINE] = {0}; char longest[MAXLINE] = {0}; max = 0; while((len = getline(line,MAXLINE)) > 0) if(len > max) { max = len; copy(longest,line); } if(max > 0) printf("%d %s\n",max,longest); return 0;}int getline(char s[],int lim){ int c,i; for(i = 0; (c=getchar()) != EOF && c != '\n';i++) { if(i < lim-2) s[i] = c; } if(c == '\n') { if(i >= lim-2) { s[lim-2] = '\n'; s[lim-1] = '\0'; } } return i;}void copy(char to[],char from[]){ int i = 0; while((to[i] = from[i]) != '\0') i++;}比较蛋疼!统计总的字符数,打印能打印的最多字符。

转载于:https://www.cnblogs.com/batteryhp/p/5020490.html

你可能感兴趣的文章
Kafka Offset Storage
查看>>
深度学习笔记之CNN(卷积神经网络)基础
查看>>
JAVA设计模式之【原型模式】
查看>>
Hadoop 添加删除数据节点(datanode)
查看>>
33.8. slb configuration
查看>>
ext的window如何隐藏水平滚动条
查看>>
71.8. Run level shell script to start Oracle 10g services on RedHat Enterprise Linux (RHAS 4)
查看>>
SAP QM Transfer of Inspection Stock
查看>>
全新视觉| 数治省市:SAP大数据构想一切可能
查看>>
ORACLE expdp备份与ORA-31693、ORA-02354、ORA-02149
查看>>
SAP S/4 HANA新变化-信用管理
查看>>
doc-remote-debugging.html
查看>>
DBMS_STATS.GATHER_TABLE_STATS
查看>>
Java-单机版的书店管理系统(练习设计模块和思想_系列 五 )
查看>>
嵌入式 详解udev
查看>>
《C程序员:从校园到职场》出版预告(2):从“百花齐放”到“一枝独秀”
查看>>
Network Monitor 查询命令和MySQL命令
查看>>
好“戏”刚刚开幕 云计算逐步被认可
查看>>
云安全:这也是需要花大钱去建设的部分
查看>>
以全局产业观领航智慧城市建设
查看>>