5.15 cut ✂️ pannirukinga bro digit++ ethuku use panringa
@notdiwakar4 күн бұрын
same question
@VoiceofPrasanna2 жыл бұрын
Bro vid naduvula paathi kaano digitt edhukku use pannigane therila
@sripathiyuvi Жыл бұрын
Yess bro, digit ooda function yennanu theriyala
@prabudeva2547 Жыл бұрын
Same doubt bro digit ++yedhuku, increment process but yepudi..
@praveenm394 ай бұрын
Yethana digit nu kantupidika use pannirukaanga bro
@Fahadpro01232 жыл бұрын
Bro 😭😭😭😭 you have no idea How useful this C programming session is ... for placements 🌚 i started with your videos dhan 💯💯💯💯💯 please keep posting and complete the series 💯
@codeio2 жыл бұрын
sure 👍🏻👍🏻
@curlsbae72.10 ай бұрын
@@codeio cut panatha again details ah solunga bro
@YogeshS-jl3eq11 ай бұрын
Bro (5.15 sec) concept i can't understand. Digit++ ethuku use panringa . Explain Bro?
@jk88699 ай бұрын
It is used for finding the no of digits in given number bro. Intial la digit oda value va 0 nu assign panikitu then while la oru oru last digit ah remove panrapo digit ah increase by 1 panna u will get the no of digits in the given number.
@SelvapriyaR-w5t23 күн бұрын
Bro very useful for me... thank you bro
@funoverloaded35672 жыл бұрын
bro can you expain the digits par, to find how many digits since it was missing in video
@OPGAMING-ik5bv Жыл бұрын
Yeah bro
@mithunchakkaravarthi12 жыл бұрын
In C Program (Finding a given number whether Armstrong Number or not), Copy is used to compare whether the 'copy' number is equal to 'n' number in the (final use) if statement. 5:16 part is missing from this video could you repost this specific video hereafter ? For subscribers clarification !
@RavanStories2 жыл бұрын
Why bro copy=n nnu vachi podanum straight ah n nnu vachi try panna koodatha
@reaganmortal806611 ай бұрын
n oda value change aairum bro. Apdi change aaita. If(sum==n) condition ah check pannum pothu false nu varum.
na unga videos pathu tha bro learn pantra super ah solitharinga... 5:15 skip anatha again upload pani videos potunga bro
@MohanMohan-yl6mu6 ай бұрын
Bro input number 3 digit iruntha multiple by cube nu sonninga athu neenga 123%10 use paninga apa remainder 3 kedaikum but 122%10 pota remainder 2 thana varum aprm epdi bro cubeala multiple pandrathu
@sushmam.r40226 ай бұрын
122%10=2+ 122/10=12 12%10=2+ 12/10=1 1%10=1+ 1/10=0 + podurukathu elam sum la pogum bro sum of digits program mari 1^3+2^3+2^3 pakanum yena 122 um 3 digits iruku
@madhankumarr60192 жыл бұрын
Bro who use copy? bro
@b.pradeepsuriya91632 жыл бұрын
while loop finish aana peragu n ooda value 0 aagidum so, namma n=copy endru loop start aaguvathairruku munnadi declear pannurom ok
@madhankumarr60192 жыл бұрын
Purijathu thanks bro
@b.pradeepsuriya91632 жыл бұрын
ok
@b.pradeepsuriya91632 жыл бұрын
do you know how many programming languages? i know only 1 that is c program nan intha channel la pathu than katukuthan you?
@madhankumarr60192 жыл бұрын
I also bro
@reaganmortal806611 ай бұрын
I think there's a little error in this code cause the output is showing non Armstrong for the number 153 which is an Armstrong number.
@s.akshaya26698 ай бұрын
Bro check whether have you missed statement terminator anywhere else...
@mrpopcorn25812 жыл бұрын
copy = n; while (copy>0) { copy = copy/10; digit++; } Bro this part u didn't say????
@karthikrajan15222 жыл бұрын
this helps to find the no.of digits
@DineshKumar-qo4cx2 ай бұрын
Same here.. this program s not running g
@amuthasivakolundu9936 Жыл бұрын
The code is not working
@amuthasivakolundu9936 Жыл бұрын
Declarations of sum=0 the code will work
@reaganmortal806611 ай бұрын
// Using for loop // #include #include #include int main(void) { // Variable declaration // int num, i, int sum=0; int digit=0; // Receive input // printf("Enter a number to find whether it is an Armstrong: "); scanf("%d",&num); // Calculate no of digit // for(i=num;i>0;1/-10){ digit++; } // Sum of individual bits // for(i=num;i>0;1/-10){ sum=sum+pow((i%10), digit), } // Display output // printf("The given number is %d digit. ", digit), if(sum==num){ printf("%d is an Armstrong number.", num); } else{ printf("%d is not an Armstrong number.",num); } return EXIT_SUCCESS; }
@VijayKumar-hn2jh2 жыл бұрын
Copy=copy/10 For example: ennoda copy oda value 370; Copy=370/10 Ans:-37,apo nan kuduthadhu 3 digit number ennaku vara answer 37.idhula nan endha answer ah bro consider pandradhu???
@sivasrinivasan.7556 Жыл бұрын
Bro apdi ila ipo 370/10 vanthu 37 varum apo digit=1 agum 2timee panum pothu 3 varum apo digit =2 agum 3 time panum pothu 0 varum digit =3 agum loop close airum
@samanthad82242 жыл бұрын
one doubt y we need to use' copy' ,we can use as same as 'n'
@codeio2 жыл бұрын
In the for loop, since we are changing the value of copy after each iteration, if we didn't create a copy, then we wouldn't have the value of the original input to use in the next loop
@studyhero8017 Жыл бұрын
Edu rendu number vachhu square la panna la ma.
@devanthiranvijay Жыл бұрын
I'm literally getting mad to see this again and again digit++ confusing me
Intha loop namma input value oda digit count find panna use panrom. Eg: input = 2753. Digit = 4 nu count pannum.
@reaganmortal806611 ай бұрын
Digit theringa tha power ku value kuduka mudiyum. Hope you understand.
@muthugk11262 жыл бұрын
Bro digit count find pannura part vittutinga🧐
@dhanulifestyle32112 жыл бұрын
Ama bro
@jayaseelanj95972 жыл бұрын
Sum=0 explain please bro
@johnsundararaj38718 ай бұрын
if sum contain any number or garbage value we cant calculate the sum of the digit .
@abccreations37982 жыл бұрын
Bro without using math.h Module,How can we find out the power value bro? Is it possible to find out the powered value of each number without using math module?
@kirubakaran15472 жыл бұрын
Int num1 = 3; Int num2 = 3; for(int i = 1; i < num1; i ++) { num1 = num1 * num2; }