Reading sentence (cin.getline())

could not understand the getin function

#include<bits/stdc++.h> using namespace std; void readline(char a[],int maxlen){ int i=0; char ch =cin.get(); while(ch!=’\n’){ a[i]=ch; i++; if(i==(maxlen-1)){ break; } ch=cin.get(); } a[i]=’\0’; return ; } int main(){ char A[1000]; readline(A,1000); cout<<A<<endl; return 0; }

hi @sp5513
kindly save ur code on coding blocks ide (https://ide.codingblocks.com/) and send link…

hi @sp5513


its working now…

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.