Please Comment, Subscribe and Click Bell Icon for More Updates. To learn software course from our experts please register here for online training: goo.gl/HIB0wL
@atulitanand86645 жыл бұрын
Sir what if number is 1034
@t260_nikitapatil33 жыл бұрын
@@atulitanand8664 instead of int take long int
@agodase62105 жыл бұрын
Best teacher i ever seen for pgming...
@johnali41172 жыл бұрын
I agree. this guy is pretty good at explaining things. There are other two guys as well who are good: Banger Rajua, and Sudhakar Sharma but they don't do any more videos as far as I can see.
@nithishbobby14105 жыл бұрын
Superb explanation and iam getting good clarification thank you
@ympoojitha55654 жыл бұрын
BEST EXPLANATION!!
@mr.anonymous45085 жыл бұрын
amazing...keeep it up
@Crazy4DB5 жыл бұрын
Good explanation on program flow. Could be more nice if shown execution live with the result.
@aflowerforthegun4 жыл бұрын
Brillient video. Thanks you
@aaparky70394 жыл бұрын
Very helpful, thank you.
@vijaykrishna35653 жыл бұрын
Good explanation sir..👌👌
@shubisayeed84803 жыл бұрын
Thank you so much
@gujjukimasti97204 жыл бұрын
but sir 0 is also digit if i have enter 007 then output only 1 digit because n !=0 or n>0. but 0 is a digit if i have enter 007. or user also enter negative value
@sansaikumarks15415 жыл бұрын
Thank you sir
@dsouzasa80485 жыл бұрын
nice explanation thanks bro
@existingstars36654 жыл бұрын
Sir please do video on patterns in logical programming in c
@deepikadg66745 жыл бұрын
How to know that , this is the logic writing for this program
@deepikadg66745 жыл бұрын
@Srinivas Garapati Thank you so much
@dammanprathap35 жыл бұрын
@Srinivas GarapatiSir I'm pursuing diploma in computer engineering Govt. Polytechnic Clg [T.S]. Nd now I'm started preparing for Ecet exam. Ur videos on programming are much helpful for me. Pls give me ur number to clarify my doubts 🙏🙏🙏. My 📱 nmbr 8367560305.
@existingstars36654 жыл бұрын
Sir i have a doubt sir Why we are using count value
@vishnupriya_vp5 жыл бұрын
Sir,, please upload more C++ examples
@sreeja75703 жыл бұрын
Sir if suppose I enterted n value as 123456789012 which is of 12 digits but o/p shows as 10 or something else which is not correct o/p is there any mistake in code???????
@surajjadhav28294 жыл бұрын
It does not apply for more than 10 digits.
@sreeja75703 жыл бұрын
Ss but why????
@vikasswaroopsen88655 жыл бұрын
Sir plz numerical
@ajitdubey65034 жыл бұрын
Sir I got garbage value for 6 digits number .why??
@madhurendubhagat61863 жыл бұрын
how can we write the same code using for loop
@AamirKhan-lq6jx3 жыл бұрын
Int main() { Int n, count=O; cin>>n; For(int I=O;I
@prakashreddy7733 жыл бұрын
What if i enter 0(zero) sir. 0 is a single digit that means it should show 1 digit but instead of displaying as 1 it displays 0. So it fails.
@AamirKhan-lq6jx3 жыл бұрын
Ooh wow good question bro I tried and same happens but then I change my code a little n%10 will give us 1
@AamirKhan-lq6jx3 жыл бұрын
Because by these we will get the remainder no but it will not work if u give more than one zero bro
@prakashreddy7733 жыл бұрын
Bro i was unable to understand it . can u send the program?
@AamirKhan-lq6jx3 жыл бұрын
@@prakashreddy773 int main(){ Int n ,count=0; Cin>>n For (int I=o;I
@AamirKhan-lq6jx3 жыл бұрын
By modulo operator u will get remainder bro
@seroujghazarian63433 жыл бұрын
Or you could just use floor(log10(n))+1 and just be done with it. Lol.
@pmahaur9622 жыл бұрын
why only n/10?what is the logic
@arunjoshi56335 жыл бұрын
Sir the count digit in given number program counting only 10 digits it is not able to count more than 10 digits Ex- For n=12345678910 Result is 0 And For n=1234567890 Result is 10
@mohitpatidar31194 жыл бұрын
Yes,i am facing the same problem
@Rahul-tn4mo2 жыл бұрын
just change the data type bro from int n to long n. It works
@satiskumarpanda76043 жыл бұрын
Sir its not applicable for more than 10 digits why is that so?
@AamirKhan-lq6jx3 жыл бұрын
Because int hold only 10 digits I think try long int as a datatype
@sureshvadde48145 жыл бұрын
Vedio clarity ga pettandi 480 picsl pettina kanabadatle
@seroujghazarian63433 жыл бұрын
Or you could just use floor(log10(n)) and just be done with it. Lol.