问个很菜的问题
#include<iostream>#include<string>
using namespace std;
int main(){
string line;
string a("1");
string S;
while(getline(cin,line)){
if(这里我想填个判断line不等于空值的条件){
S=line+a;
cout<<S<<endl;
}else
cout<<"请输入有效字符"<<endl;
}
return 0;
}
if后面那个条件该怎么写。C++中没有null这个关键字,让我很迷茫,初学者,求指教。