• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

c读取一行字符串,以及c++读取一行字符串的实例

c++ 搞代码 4年前 (2022-01-06) 30次浏览 已收录 0个评论

今天小编就为大家分享一篇c读取一行字符串,以及c++读取一行字符串的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

一 c读取一行字符串

1 gets

 #include  #include  #include  int main() { int size = 1024; char* buff = (char*)malloc(size); // read lines while(NULL != gets(buff)){ printf("Read line with len: %d\n", strlen(buff)); printf("%s", buff); } // free buff free(buff); } 

利用getchar()读取一个个字符来读取一行

 #include  #include  int my_getline(char* line, int max_size) { int c; int len = 0; while( (c = getchar()) != EOF && len </div><p><span style="color: #ff0000"><strong>二 c++读取一行字符串</strong></span></p><div class="gaodaimacode"><pre class="prettyprint linenums"> cin.get()和cin.getline() #include using namespace std; int main() { cout << "----------getline忽略'\\n-----------------" << endl; char str0[30], str1[30]; cin.getline(str0, 30); cin.getline(str1, 30); cout << "str0:" << str0 << endl; cout << "str1:" << str1 << endl; cout << "---------利用get()消除get()遗留下来的'\\n'-------" << endl; char str2[30], str3[30]; cin.get(str2, 30).get(); // 注意这里! cin.get(str3, 30).get(); cout << "str1: " << <strong style="color:transparent">来源gaodai#ma#com搞@@代~&码*网</strong>str2 << endl; cout << "str2: " << str3 << endl; cout << "--------没消除get()遗留下来的'\\n'就被下一个get()读取了,所以str5输出为空-----" << endl; char str4[30], str5[30]; cin.get(str4, 30); // 注意这里! cin.get(str5, 30); cout << "str4: " << str4 << endl; cout << "str5: " << str5 << endl; return 0; } 

以上就是c读取一行字符串,以及c++读取一行字符串的实例的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:c读取一行字符串,以及c++读取一行字符串的实例
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址