frankly speaking, rohit gupta sir's way of teaching haerdly making any one understand any topic completely
@mohdbilal22 жыл бұрын
++
@hiteshpatil8021 Жыл бұрын
ITNA SACH NAHI BOLNA THA
@Pseudo_Harsh4 ай бұрын
sahi baat hai
@rohanpatidar9864 жыл бұрын
in palindrome question, loop condition can be optimised by for(int i=0; i
@rajatmittal484 жыл бұрын
Good thought but i think still time complexity is o(n)
@gussaillaunda13843 жыл бұрын
but i think it wont work as lets take the example of odd numberd words and for the even one the condition for the if nad else condition will be tricky and i think that for even too it wont work you know but good to think that its just my thinking please let me know if i am wrong anywhere
@satyamtripathi8883 жыл бұрын
@@gussaillaunda1384 you are right
@manavpatni66433 жыл бұрын
@@gussaillaunda1384 yeah you're right
@tanned_cosines_3 жыл бұрын
@@gussaillaunda1384 the thing is, CASE 1: RACECAR (length = 7) n/2 comes as 3.5 and c++ will round it to 3 CASE 2: AAAAAA (length = 6, as not many even length palindrome exist, lol) n/2 comes as 3 hence finally, be it even or odd n/2 is same, the condition will be for both and its optimized :D
@md.ualiurrahmanrahat24003 жыл бұрын
Every day learning some mindblowing things from this channel!!! Can't believe they have provided this amount of knowledge entirely free. Lots of love and huge respect for Apna College Team
@sumiyashaik36122 жыл бұрын
Assalamu alaikum
@biggTM Жыл бұрын
@@sumiyashaik3612 hii
@sumiyashaik3612 Жыл бұрын
@@biggTM hello
@vivekpatankar8953 жыл бұрын
The way you explain theory is really very good but the time when you explain the codes of the problems it seems lack of efforts...I mean you just write the code and dictate it, you aren't explaining that how it works
@ShubhamSharma-dr2up3 жыл бұрын
true
@rheniuspaul3893 жыл бұрын
Yup
@AbhinavKumar-ri8zi3 жыл бұрын
exactly !, I had to spend hours figuring why he wrote those lines !
@rameshmalhotra95252 жыл бұрын
kzbin.info/www/bejne/a3fWepRqgtVmntE
@ARYAN-mg3rr2 жыл бұрын
That's why it is a free course 😂
@SciTechi3 жыл бұрын
Perfect time ..... Ads ka..... 2 min start hote hi Amazon prime ka ads aa gya .....
@starkstreak55833 жыл бұрын
kasam se bhai aisa padhaya h...jo bache pehli bar seekh rahe honge unka pata nhi kya hua hoga...beginners ke liye hai par padha pata nahi kaise rahe ho.
@Raufkhanvines17 күн бұрын
Qasam say bhai pata ni yay kis bair bakri ko bayj diya😢
@saadrao804 Жыл бұрын
this wasn't easily understandable but after some hard work by my own, i am able to understand it, i will request to apna college team that plz elaborate the program. thanks.
@farhad7912 Жыл бұрын
In 6:33 please tell me how this if(arr[i] != arr[n-1-i])
@jaweriaamir79932 жыл бұрын
"I hope ziada tar logo ny soch lia ho ga, or jinho ny nai socha un k lye ham hain na" Aryy BHAIIII😭😭💖💖
@rey36353 жыл бұрын
getline function here is used for printing space in between two words of one sentence cuz if we dont do that space key will skip to the next iteration but there is catch cuz we also enable "enter key"to take us to new line and In array new line means new array or array finished so what happens is that after we give cin>>n integer input we hit enter key mostly right so that takes us to new line in character string and we end up making empty array,lol.so we use ignore function to flush out previous inputs buffer so that we can prevent this and hitting "enter key" wont be counted as input at first
@deepakmodi93432 жыл бұрын
thanks
@bhushanpande21743 жыл бұрын
An easier solution to find the length of the biggest word in a sentence would be #include using namespace std; int main() { int n; cin>>n; char arr[n+1]; cin.getline(arr,n); cin.ignore(); int count=0; int currlen=-1000; for(int i=0;icurrlen) currlen=count; count=0; } count=count+1; } cout
@meetjain26402 жыл бұрын
galat hain bhai do check or update me
@sofiabrown86152 жыл бұрын
An even more easy appoach will be using conditional operator: int count=0, maxLength=0; for (int i=0 ; a[i]!='\0' ; ++i) { (a[i]==' ' || a[i]=='\0') ? count=0 : count++; if (count>ml) { maxLength=count; } } cout
@priyankshusinha56162 жыл бұрын
Nice
@ritu53684 жыл бұрын
I have no words to explain my feelings 🔥🔥🔥🔥💥💥👏👏
@raghavchaddha45613 жыл бұрын
I don't know that whether you guys are doing the practical or just watching these lectures like another series BUT I am not getting desired output in this case last question and many more previous questions.
@Raufkhanvines17 күн бұрын
Bilkul Bhai mujay khud samaj ni aaraah😢 is bayghairat ki😢
@ilovepeace2 жыл бұрын
Rishabh bhaiya teaches best 🔥🔥
@yogeshdharya38572 жыл бұрын
0 : 37 your Fking genius. The concept behind all this is quite crystal clear.Thank u so much Stay healthy.
@swastikjain73734 жыл бұрын
I have a single problem with this amazing playlist .. That the timing of uploading, It is not fixed that is why i always waits for the video sometimes it uploaded at 9 or 8 or 7 or 12 and the last one was nearly 1AM ☹️ . SO PLEASE BHAIYA JI DO SOMETHING . LOVE YOU BHAIYA KEEP TEACHING, I WILL KEEP LEARNING 😊😊
@ujjawalmishra8584 жыл бұрын
You are only watching 1 playlist of bhaiya...But he is working on multiple playlists...You can support by like, comment and cooperation..
@raghavchaddha45613 жыл бұрын
I don't know that whether you guys are doing the practical or just watching these lectures like another series BUT I am not getting desired output in this case last question and many more previous questions.
@Harsha081553 жыл бұрын
@@raghavchaddha4561 yeah you are right
@rameshmalhotra95252 жыл бұрын
kzbin.info/www/bejne/a3fWepRqgtVmntE
@PayaswiniSahu4 ай бұрын
Yess absolutely correct 😢.... I thought I was making any mistakes
@anon354682 жыл бұрын
//Here my version I used for loop instead of while loop// #include #include using namespace std; int main() { char arr1[] = "Snowfall on this scale is no impediment we can keep moving"; int n = strlen(arr1); int maxlen = 0, currentlen = 0; int longestWord = 0, word = 0; for(int i=0; i maxlen){ maxlen = currentlen; longestWord = word; } currentlen = 0; word = i+1; } else{ currentlen++; } } cout
@atanudebnath052 ай бұрын
You're teaching new things like we know it already
@developerNik Жыл бұрын
Character arrays are initialized by char arr[n+1] Aur yaha n+1 hai cuaz last wale me '/0' ayega for that char array to terminate Then uska input lene ke liye direct cin
@farhad7912 Жыл бұрын
In 6:33 please tell me how this if(arr[i] != arr[n-1-i])
@mohammadrafikbhai95163 жыл бұрын
GOOGLE VALA BHAI AWSOME. ....HAR VIDEO KUCH NA KUCH UNIQUE SIKATA HAI
@sohebshaikh33443 жыл бұрын
Code thoda aur acche se samjo bhaiya
@ayeshanaeem77188 ай бұрын
Exactly
@Talhakhan-jq5ee4 ай бұрын
😊😊😊😊😊😊😊@@ayeshanaeem7718
@srimati_radharani_das4 ай бұрын
@@Talhakhan-jq5ee padhai pe dhyaan dele
@syedmuzair91502 ай бұрын
Very fast
@akesh394 жыл бұрын
Aman sir you and your Team is best 🤘
@madhavanand7564 жыл бұрын
❗ Palindrome Check in n/2 times only ❗ Instead of running loop for n times, we can check if palindrome just by running loop n/2 times. Here's the code flag = true; for (int i = 0; i < n/2; i++) if(word[i]!=word[n-1-i]){ flag=false; break; } if(flag==true) cout
@aryandas78672 жыл бұрын
actually it will be (n+1)/2 as you need to keep in mind about odd and even numbers
@mihirmall16962 жыл бұрын
@@aryandas7867 but time complexity will be remain of O(n)
@nirbhaisai34212 жыл бұрын
@@mihirmall1696 How? ..it will be O(n/2), right?
@swarupyeole51713 жыл бұрын
1) CLEARING A MISCONCEPTION- In palindrome ques sir makes an character array in following way char Arr[n+1] and when we do Cin>>arr; It actually can store n+2 elements because indexing in array starts from 0 Thus even if you declare array of like this char Arr[n] it is still going to work as it's size is n+1 with Arr[n+1] th element being '\0' Now you might be wondering when we declare integer type array like int Arr[n] we consider it's size to be n because when we take input for integer array we take it like this For(int i=0 ; i>Arr[i] This makes the array of size n as we traverse from 0 to n-1 in loop.
@sourabhsingh59413 жыл бұрын
so thoughtful👍
@yashkamath99693 жыл бұрын
I think there is misconception, When we declare an char array of size n+1 that means by default the last element of the array is \0.Hence if we want a char array to have n size we should declare the size as n+1 since the last element will be \0. I am very new to learning c++ I may be wrong .Correct me if I am wrong. @Apna COllege
@rameshmalhotra95252 жыл бұрын
kzbin.info/www/bejne/a3fWepRqgtVmntE
@mojojojo-k6v Жыл бұрын
Alternate Solution:- Used std::isalpha() from header Approach:- Since words are made up of alphabets , we can simply count anytime the char array has an alphabet in it. during spaces or null character we will check if the current word length is greater than the already existing maximum . Code:- char arr[20]; cin.getline(arr,20); int current_word_length=0; int maximum=-1; for(int i=0;i
@singh_043 жыл бұрын
idk but felt like genius after writing that "max word" code 😃
@mdshaqlain32523 жыл бұрын
same here bro!
@prashantsahu52743 жыл бұрын
to print the longest word in a sentence #include using namespace std; int main() { int n; cin>>n; cin.ignore(); char a[n+1]; cin.getline(a,n); cin.ignore(); int currentlength = 0; int maxlength=INT_MIN; int s=0; int maxs=INT_MIN; for (int i = 0; i < n; i++) { if (a[i]==' ' || a[i]=='\0') { if (currentlength>maxlength) { maxs=s; } maxlength=max(maxlength,currentlength); currentlength=0; s=i+1; } else { currentlength++; } } for (int i = 0; i < maxlength; i++) { cout
@abhishekhiregouda44193 жыл бұрын
i thk in first loop the condition should be i
@madhavanand7564 жыл бұрын
Who else noticed Apni Kaksha ?? 😎 Bhaiya Mistakenly spoke "Apni Kaksha" rather than "Apna College" in very beginning Like Phodd Do Abb 😂
@amanlohiya2975_4 жыл бұрын
Ek Number Bhaiya! Bhaiya In Starting " Apni kaksha " likha hua hai ANimation mai
@prakharsharma87184 жыл бұрын
Thanks bhaiya.,....for increasing speed as per the timeline ☺️☺️
@BeingBros8 ай бұрын
better approach for last question int main() {int n; cin>>n; cin.ignore(); char arr[n+1]; cin.getline(arr, n); cin.ignore(); int maxlen = 0; int currlen = 0; int i = 0; for(int i;imaxlen) {maxlen = currlen; } currlen =0; } else currlen ++; break; } } cout
@mohitraj25352 жыл бұрын
hey! thanks for telling the world thst you are my friend and also that i am not a palindrome
@divyanshujod4 жыл бұрын
Aman dhattarwal best in the world
@mayurkapadnis42653 жыл бұрын
'Largest word in a sentence' starts from 6:23
@rajfekar48394 жыл бұрын
sir not apni kaksha it is apna college😎
@raghavchaddha45613 жыл бұрын
I don't know that whether you guys are doing the practical or just watching these lectures like another series BUT I am not getting desired output in this case last question and many more previous questions.
@rushikeshkawade13333 жыл бұрын
Sir kya chuumeshwari sikhate ho ❤️
@shreyaamritkar13313 жыл бұрын
pls add questions for practise in notes
@arka63024 жыл бұрын
we can reduce a if condition inside while loop by: while(a[i]!='\0') { if(a[i]!=a[n-i-1]) { p=false; break; } i++; }
@abhiroopsingh93203 жыл бұрын
Not at all understood the explanation of the question:largest word in a sentence.
@khushankmadaan94073 жыл бұрын
//No use of Curr_start is required for updating the max_start... you can do it using max_start = current_index(i) - max_length... #include using namespace std; int main() { int size; cin >> size; cin.ignore(); char *array = new char[size + 1]; cin.getline(array, size); cin.ignore(); int curr_length = 0, max_length = 0; int max_start = 0; int i = 0; while (1) { if (array[i] == ' ' || array[i] == '\0') { if (curr_length > max_length) { max_length = curr_length; max_start = i - max_length; } curr_length = 0; } else { curr_length++; } if (array[i] == '\0') { break; } i++; } cout
@anshumanp744 жыл бұрын
Am not against the video content it's superb but the only thing which am concerned is the dates i mean Aman bhaiya has given the index with dates for this course and according to tht we should have been finishing week 5 content by 11th Nov But we r at 1 st topic of week 4 as of right now 10th lec Instead of lec 20 or 21 Am saying this because bhaiya told tht the videos r already been made and they have stacked them
@rutvikrana5124 жыл бұрын
I think next topic should be "string" because we don’t use char array usually.
@Biliphang0884 жыл бұрын
pointers as well
@rutvikrana5124 жыл бұрын
Biliphang Basumatary ... yep 👌
@rameshmalhotra95252 жыл бұрын
kzbin.info/www/bejne/a3fWepRqgtVmntE
@shivprakashchaubey27214 жыл бұрын
This code is gazab liked it most🤘🤘
@shivammaurya34514 жыл бұрын
Thank u bhaia best video with best explanation😃😃
@supersu61383 жыл бұрын
if u dunno size of char arr then this is how u do it char sentence[100] = "this is the not the largest word."; int maxCount = 0; int start= 0; int currStart,currEnd = 0; int i=0; while(sentence[i]!='\0'){ if(sentence[i]==' '){ if(currStart>0){ currEnd = i; if(maxCount
@suman-majhi4 жыл бұрын
There's a mistake in 0:42 .... you used forward slash in '/0' it should be '\0' with backward slash 😄😄
@snehilsinha46894 жыл бұрын
nice observation.
@rahulprasad35754 жыл бұрын
its animation team mistake i guess and mistake is so minor that no body observed
@suman-majhi4 жыл бұрын
@@rahulprasad3575 yes it doesn't matter.... but beginner should get aware for this
@rameshmalhotra95252 жыл бұрын
kzbin.info/www/bejne/a3fWepRqgtVmntE
@DTALKS01 Жыл бұрын
frankly speaking , your teaching speed is too fast i means if i am learning this first time than your should explain more detail....
@TonyStark-nl9uj4 жыл бұрын
Pls start web development series. ...
@raghavchaddha45613 жыл бұрын
I don't know that whether you guys are doing the practical or just watching these lectures like another series BUT I am not getting desired output in this case last question and many more previous questions.
@TonyStark-nl9uj3 жыл бұрын
@@raghavchaddha4561 I'm not watchin these now
@rameshmalhotra95252 жыл бұрын
kzbin.info/www/bejne/a3fWepRqgtVmntE
@TonyStark-nl9uj2 жыл бұрын
@@rameshmalhotra9525 thnku
@prashantsahu52743 жыл бұрын
short method to solve longest word in sentence problem using for loop #include using namespace std; int main() { int n; cin>>n; cin.ignore(); char a[n+1]; cin.getline(a,n); cin.ignore(); int currentlength = 0; int maxlength=INT_MIN; for (int i = 0; i < n; i++) { if (a[i]==' ' || a[i]=='\0') { maxlength=max(maxlength,currentlength); currentlength=0; } else { currentlength++; } } cout
@vedang67762 жыл бұрын
You can also solve largest word in a sentence by using ascii table here's how : // character array will treat space as a terminating character hence we'll use string string arr; getline(cin,arr); int i = 0; int wordmax = 0; int counter = 0; while(arr[i] != '\0') { if(arr[i] == 32) { counter = 0; } if((arr[i] >= 65 && arr[i] = 97 && arr[i]
@gurtegsinghsohi4112 жыл бұрын
When I input 5 and apple .. output comes a p p l .... e is missing ... Can you explain why 🙏🙏🙏 Here is the code #include using namespace std; int main(){ int n; coutn; cin.ignore(); char arr[n+1]; cin.getline(arr,n); cin.ignore(); for(int i=0;i
@AmanSingh-wk3iv2 жыл бұрын
On opening notes it is showing file is in the owner's trash . but earlier we are able to open and download notes . Mam/Sir please provide the notes again
@sikandarbhide53542 жыл бұрын
The Easier way can be : #include using namespace std; int main() { string g; getline(cin, g); int a = g.length(); int n = 0, t1 = 0; for (int i = 0; i < a; i++) { if ((int)g[i] != 32) { n++; } else { t1 = max(t1, n); n = 0; } } cout
@manurbhavarya69242 жыл бұрын
hey what's int g[i] != 32 ? i mean whats 32 there, i actually wrote almost the same program but not getting the right ans
@pokegogamer4 ай бұрын
got shoutout at 3:45 😎😎😎
@mhamza0163 жыл бұрын
Bahi swagat tu theks kari hamara😁
@tellingeverything1993 жыл бұрын
this is not a beginner course, it is too difficult to understand code.
@lappu_sa_sachin_seema3 жыл бұрын
sir, Please thoda aur detail me explain kiya kariye.. nayi nayi terminology ko aise hawa mat udaiye sir
@ujjwalmahajan75814 жыл бұрын
Bhaiya please upload 12th organic as fast as possible Who want the same, like below so that it reaches to Bhaiya as soon as possible
@vaibhavsharma84653 жыл бұрын
Neha - I am a peaceful soul
@souravmaji47124 жыл бұрын
Plz plz plz bhaiya , aap daily videos c++ placement series ka dalea ga tab jake time pe khatam hoga ye series nhe tho ma aage kuch ban nhe payunga
@55kaAadi4 жыл бұрын
kl 3:00 pm pr real state pr video Mil jaigi aap sbhi ko.... jisme aman Bhiya ne detailed me sb kch btaya hoga ...by the way thanks to all for this great fan following of aman bhiya
@keshavgarg11582 жыл бұрын
The value taken from n in the array for its size by user input but this array would become infinite size of array.
@manthantiwari7824 жыл бұрын
Thank you always
@SharvanKumar-ui1kw4 жыл бұрын
Thank u so much Plz continue
@yusufkhan73244 жыл бұрын
kzbin.info/aero/PLUvbkhYCyw11OWRmdKkUMQ1_j9J2Zkpvf Full
@hiteshjangid50402 жыл бұрын
Largest word in a Sentence: char arr[100]="Do or Dying"; int i=0; int maxLen=0; int maxIndex=0; int currMax=INT_MIN; while(arr[i]!='\0') { if(arr[i]!=' ') { currMax++; } else{ currMax=0; } maxLen=max(maxLen,currMax); if(maxLen==currMax) { maxIndex=i; } i++; } cout
@CricKabaddi0994 ай бұрын
very tricky explanation
@004_sreelemonchandramohont92 жыл бұрын
Sir you go so fast ...and I am Bangladeshi please talk little slowly and satay more on main topics
@utkarshsinghtiwari54242 жыл бұрын
Mind blowing🤯
@aditivibhute94573 жыл бұрын
Why do we even need to study character array when we have strings in c++, It's creating confusion. Also, character array is an array so why don't we input elements in it like we did for integer arrays i.e. using for loop ?
@only_for_fun1234r3 жыл бұрын
I had a same doubt , is this possible in string??
@AbhishekSingh-eo6bi4 жыл бұрын
To be honest this video is not so understanding like previously..cause of speed and explaintion..for me as beginners 😭 Aman bhai kis baat ki saza de rahe ho..❤️🔥👍🏻
@shrutigupta93193 жыл бұрын
Another solution of Palindrome: # include using namespace std; int main ( ){ int n,i,b; cin>>n; char arr[n+1]; cin>>arr; for(i=0;(n%2==0)?i
@only_for_fun1234r3 жыл бұрын
Condition statement boht difficult h
@neerajkumarsingh47213 жыл бұрын
The correct code - #include using namespace std; int main(){ int n; cin>>n; cin.ignore(); char arr[n+1]; cin.getline(arr, n+1); cin.ignore(); int maxLen = 0, currLen = 0; int st = 0; for(int i = 0; arr[i] != '\0'; i++){ if(arr[i] == ' '){ if(currLen > maxLen){ maxLen = currLen; st = i - maxLen; } currLen = 0; continue; } currLen++; } if(currLen > maxLen){ maxLen = currLen; st = n - maxLen; } cout
@neerajkumarsingh47213 жыл бұрын
Put actual value of n instead of any n > actual n.
@ahmeddon71793 жыл бұрын
Salam bhai plzz reply krna me wait kruga..ap bht axha smjha rhy BTW ap konsa compiler use kr rhy now I have a hope k mery axhy marks a jaen gay
@aryachakraborty86734 жыл бұрын
Who wants Java Course ?? Aman Bhaiya please Turn On Monetization
@aryachakraborty86734 жыл бұрын
@Argle Kaun sir Aman Bhaiya likho
@aryachakraborty86734 жыл бұрын
@Argle Thanks for supporting me
@aryachakraborty86734 жыл бұрын
@Argle arre sorry mat bolo ....its ok ...chilll karo
@aryachakraborty86734 жыл бұрын
@Argle ha ha ha ...as if it is very funny
@aryachakraborty86734 жыл бұрын
@Argle yes i noticed
@himanshudawande3603 жыл бұрын
if possible could you explain it in more detail if you are introducing any new special function
@piyushmusaddi12724 жыл бұрын
what is wrong in the following code for the last qstn: #include using namespace std; int main() { int n; cin>>n; cin.ignore(); char a[n]; cin.getline(a,n); cin.ignore(); int length=0; int maxlength=0; for(int i=0;imaxlength) maxlength=length; } else length=0; } cout
@apoorvajain96283 жыл бұрын
The code should work fine and it should output the number of letters in the largest word.
@ayushgoyal30213 жыл бұрын
Bhai baaki Sab Theek hai bas agar tera largest word agar last me hua toh uske aage koi space ni hai, aapne vo condition check ni ki
@pranavshandilya78153 жыл бұрын
Crystal clear each and every concept . Best explanation. Thanks bhaiya
@yashshukla90514 жыл бұрын
Video ki pehli line thi "Welcome to Apni Kaksha". It should be rather "Welcome to Apna College" ☺☺
@khushimaan.65984 жыл бұрын
🤭🤭🤭..ye to mene dekha hi nhi
@rajeshjha68014 жыл бұрын
Bhai ye log jyada videos apni kaksha pe upload Karte hai na isiliye
@prayagjasani3 жыл бұрын
Company ka name apani kaksha hai isiliye koi mistake nahi hai
@peekybot28182 жыл бұрын
Wow genius 😂
@bobybiju35863 жыл бұрын
Poor video clarity bro...please set it right...wonderful course
@sourishdutta09992 жыл бұрын
I AM A PEACEFUL SOUL is from 2d array wala video, 9.1
@sayanmaitra113 жыл бұрын
Jab tak chalo chalte jao bass while(1) {} 🤣🤣🤣😎😎😎🤣🤣😎😎
@Harshit_yt12043 жыл бұрын
not a playlist for begginers.It is quite difficult.
@ravishankar92473 жыл бұрын
True....!!
@sahilsawal4 жыл бұрын
Thank You Sir😇👍🙏Very Helpful Video☺
@priyanshupaliwal85483 жыл бұрын
In the last question, some answers are not coming if you all have tried some other inputs this is the correct code int main() { int n; cin>>n; cin.ignore(); char arr[n+1]; cin.getline(arr,n); cin.ignore(); int i = 0; int currentLength = 0; int maxLength = 0; int st = 0; int maxst = 0; int start = 0; while (true) { if (arr[i] == ' ' || arr[i] == '\0') { if (currentLength > maxLength) { maxLength = currentLength; maxst = i; start = i - maxLength; // cout
@paramjani17683 жыл бұрын
yes
@paramjani17683 жыл бұрын
have you found out the error
@paramjani17683 жыл бұрын
I am also facing some issue
@ajaykiran63 жыл бұрын
dhannnyavaaaaaad.
@harshadhikari45853 жыл бұрын
Sir at 1:12 your null character is '/0' . it is a typo but your hardwork is way too appreciable , thanks for this
@StoryGicRohit3 жыл бұрын
shukriya
@prashantmaurya96354 жыл бұрын
Thanks bhaiya👍
@thejasd89974 жыл бұрын
cin.getline(arr,n) For this , shouldn't the size be n+1
@amaankhan84364 жыл бұрын
no bro we are only picking n characters from the input so i think n is correct not n+1
@thejasd89974 жыл бұрын
@@amaankhan8436 what about null character, shouldn't it be included?
@amaankhan84364 жыл бұрын
@@thejasd8997 it is included in the array that we declared but "n" in cin.getline(arr,n) represents the number of characters that we wish to input. So it is n and not n+1
@satyamtripathi8883 жыл бұрын
@@thejasd8997 When you enter a word..say "Rohit" do you also enter '\0'...NO... it is automatically inserted... so you online write the no. of characters that you are going to enter (here 5) ....but we need to give space of 6 for the character array so that there is space for '\0' to be inserted
@raghavchaddha45613 жыл бұрын
I don't know that whether you guys are doing the practical or just watching these lectures like another series BUT I am not getting desired output in this case last question and many more previous questions.
@arpitg65304 жыл бұрын
#amandhattarwal bhaiya es video me Bhai ne apna college ke jagah Apne kaksa Bola hai Baki sab Puri video badiya hai🙆🙆🙆🙅
@md614212 жыл бұрын
if you have doubt 10:44 else { currLen++; }
@sahilgupta71703 жыл бұрын
Meanwhile the guy named NITIN looking after his name while knowing the concept of palindrome.
@nitingarg88633 жыл бұрын
😂
@A_proud_Chauvinist2 жыл бұрын
To find longest word ,,,let a sentence be like I love math ,,,so we should print both love and math
@aviralkaushik94254 жыл бұрын
Jao or phodo 🤩
@mayurgupta1282 жыл бұрын
Notes for this lecture can't be found on this link.
@amoghchitanand53554 жыл бұрын
Gud one👍
@rajiv-592 жыл бұрын
Another method to solve last problem #include using namespace std; int main() { #ifndef ONLINE_JUDGE freopen("input.txt","r",stdin); freopen("output.txt","w",stdout); #endif int n; cin>>n; cin.ignore(); char arr[n+1]; cin.getline(arr,n+1); cin.ignore(); int i=0; int count; int maxno=INT_MIN; while(arr[i]!='\0') { count=0; while(arr[i]!=' ' && arr[i]!='\0') { count++; i++; } maxno=max(maxno,count); i++; } cout
@adityapradhan52353 ай бұрын
Kuch nahi samajh raha
@iamriyazsheikh3 жыл бұрын
0:02 welcome to apni kaksha....???
@beyondinfinity8879 Жыл бұрын
Explanation can be better. As a beginner it is difficult for me to understand this lec.
@vladimirgrigorov9913 Жыл бұрын
I think you should be using dynamic memory instead of char arr[n]
@devbatra33654 жыл бұрын
Could someone explain the use of cin.ignore()! I couldn't clearly understand.
@nagendra46794 жыл бұрын
here is the your answer... www.tutorialspoint.com/what-is-the-use-of-cin-ignore-in-cplusplus#:~:text=The%20cin.,using%20the%20ignore()%20function.
@rohanjangid81364 жыл бұрын
bhaiya python ke bhi videos post karo and 1 din me 2 videos upload karo jaise 12 th class ke karte ho