其他分享
首页 > 其他分享> > 语法基础字符串笔记

语法基础字符串笔记

作者:互联网

1、fgets函数会读入行末换行      
      fgets(str,101,stdin);
      int len=0;
      for (int i=0;str[i]&&str[i]!='\n';i++)len++; //返回字符串长度
  2、c++不能用gets   3、string输入遇到空格自动结束,解决方法getline(cin,string)读取一行,以回车为结束       
      string str;
      getline(cin,str);
      cout<<str.size();  //返回字符串长度
 

标签:string,int,笔记,语法,fgets,len,str,字符串,getline
来源: https://www.cnblogs.com/Mercury1988/p/15981856.html