Armstrong Number | C Programming for Beginners Ep - 18 | Tamil | code io

  Рет қаралды 41,399

code io - Tamil

code io - Tamil

Күн бұрын

Пікірлер: 61
@GamingMouze
@GamingMouze 2 жыл бұрын
5.15 cut ✂️ pannirukinga bro digit++ ethuku use panringa
@notdiwakar
@notdiwakar 4 күн бұрын
same question
@VoiceofPrasanna
@VoiceofPrasanna 2 жыл бұрын
Bro vid naduvula paathi kaano digitt edhukku use pannigane therila
@sripathiyuvi
@sripathiyuvi Жыл бұрын
Yess bro, digit ooda function yennanu theriyala
@prabudeva2547
@prabudeva2547 Жыл бұрын
Same doubt bro digit ++yedhuku, increment process but yepudi..
@praveenm39
@praveenm39 4 ай бұрын
Yethana digit nu kantupidika use pannirukaanga bro
@Fahadpro0123
@Fahadpro0123 2 жыл бұрын
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 💯
@codeio
@codeio 2 жыл бұрын
sure 👍🏻👍🏻
@curlsbae72.
@curlsbae72. 10 ай бұрын
​@@codeio cut panatha again details ah solunga bro
@YogeshS-jl3eq
@YogeshS-jl3eq 11 ай бұрын
Bro (5.15 sec) concept i can't understand. Digit++ ethuku use panringa . Explain Bro?
@jk8869
@jk8869 9 ай бұрын
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-w5t
@SelvapriyaR-w5t 23 күн бұрын
Bro very useful for me... thank you bro
@funoverloaded3567
@funoverloaded3567 2 жыл бұрын
bro can you expain the digits par, to find how many digits since it was missing in video
@OPGAMING-ik5bv
@OPGAMING-ik5bv Жыл бұрын
Yeah bro
@mithunchakkaravarthi1
@mithunchakkaravarthi1 2 жыл бұрын
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 !
@RavanStories
@RavanStories 2 жыл бұрын
Why bro copy=n nnu vachi podanum straight ah n nnu vachi try panna koodatha
@reaganmortal8066
@reaganmortal8066 11 ай бұрын
n oda value change aairum bro. Apdi change aaita. If(sum==n) condition ah check pannum pothu false nu varum.
@divya-k1j
@divya-k1j Жыл бұрын
bro experienced teachera vida neenga teach pandrathu easiya irukku videos potttute irunga
@codeio
@codeio Жыл бұрын
Happy to hear that 🤩🤩🤩
@curlsbae72.
@curlsbae72. 10 ай бұрын
na unga videos pathu tha bro learn pantra super ah solitharinga... 5:15 skip anatha again upload pani videos potunga bro
@MohanMohan-yl6mu
@MohanMohan-yl6mu 6 ай бұрын
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.r4022
@sushmam.r4022 6 ай бұрын
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
@madhankumarr6019
@madhankumarr6019 2 жыл бұрын
Bro who use copy? bro
@b.pradeepsuriya9163
@b.pradeepsuriya9163 2 жыл бұрын
while loop finish aana peragu n ooda value 0 aagidum so, namma n=copy endru loop start aaguvathairruku munnadi declear pannurom ok
@madhankumarr6019
@madhankumarr6019 2 жыл бұрын
Purijathu thanks bro
@b.pradeepsuriya9163
@b.pradeepsuriya9163 2 жыл бұрын
ok
@b.pradeepsuriya9163
@b.pradeepsuriya9163 2 жыл бұрын
do you know how many programming languages? i know only 1 that is c program nan intha channel la pathu than katukuthan you?
@madhankumarr6019
@madhankumarr6019 2 жыл бұрын
I also bro
@reaganmortal8066
@reaganmortal8066 11 ай бұрын
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.akshaya2669
@s.akshaya2669 8 ай бұрын
Bro check whether have you missed statement terminator anywhere else...
@mrpopcorn2581
@mrpopcorn2581 2 жыл бұрын
copy = n; while (copy>0) { copy = copy/10; digit++; } Bro this part u didn't say????
@karthikrajan1522
@karthikrajan1522 2 жыл бұрын
this helps to find the no.of digits
@DineshKumar-qo4cx
@DineshKumar-qo4cx 2 ай бұрын
Same here.. this program s not running g
@amuthasivakolundu9936
@amuthasivakolundu9936 Жыл бұрын
The code is not working
@amuthasivakolundu9936
@amuthasivakolundu9936 Жыл бұрын
Declarations of sum=0 the code will work
@reaganmortal8066
@reaganmortal8066 11 ай бұрын
// 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-hn2jh
@VijayKumar-hn2jh 2 жыл бұрын
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
@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
@samanthad8224
@samanthad8224 2 жыл бұрын
one doubt y we need to use' copy' ,we can use as same as 'n'
@codeio
@codeio 2 жыл бұрын
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
@studyhero8017 Жыл бұрын
Edu rendu number vachhu square la panna la ma.
@devanthiranvijay
@devanthiranvijay Жыл бұрын
I'm literally getting mad to see this again and again digit++ confusing me
@reaganmortal8066
@reaganmortal8066 11 ай бұрын
copy=num; for(digit=0; copy>0; digit++) { copy=copy/10;
@reaganmortal8066
@reaganmortal8066 11 ай бұрын
Intha loop namma input value oda digit count find panna use panrom. Eg: input = 2753. Digit = 4 nu count pannum.
@reaganmortal8066
@reaganmortal8066 11 ай бұрын
Digit theringa tha power ku value kuduka mudiyum. Hope you understand.
@muthugk1126
@muthugk1126 2 жыл бұрын
Bro digit count find pannura part vittutinga🧐
@dhanulifestyle3211
@dhanulifestyle3211 2 жыл бұрын
Ama bro
@jayaseelanj9597
@jayaseelanj9597 2 жыл бұрын
Sum=0 explain please bro
@johnsundararaj3871
@johnsundararaj3871 8 ай бұрын
if sum contain any number or garbage value we cant calculate the sum of the digit .
@abccreations3798
@abccreations3798 2 жыл бұрын
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?
@kirubakaran1547
@kirubakaran1547 2 жыл бұрын
Int num1 = 3; Int num2 = 3; for(int i = 1; i < num1; i ++) { num1 = num1 * num2; }
@abccreations3798
@abccreations3798 2 жыл бұрын
@@kirubakaran1547 Thanks bro💗
@loshiniloshu9347
@loshiniloshu9347 2 жыл бұрын
Anna nadula kojam kaanum video la
@amuthasivakolundu9936
@amuthasivakolundu9936 Жыл бұрын
Declear the sum =0
@KarthiKeyan-xx9uv
@KarthiKeyan-xx9uv 2 жыл бұрын
Adam number program podunga bro
@s__i__v__u__1__8
@s__i__v__u__1__8 2 жыл бұрын
Why copy is used bro?
@MR.World.16
@MR.World.16 2 жыл бұрын
Bro video skip aagiruku bro
@vidhyavarshu2652
@vidhyavarshu2652 2 жыл бұрын
Anna purila pls bro explain pannuga
@sivaeditz6772
@sivaeditz6772 2 жыл бұрын
🥴😵
Important Subjects for Placement !!  #shorts
0:59
code io - Tamil
Рет қаралды 3,6 М.
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
小丑教训坏蛋 #小丑 #天使 #shorts
00:49
好人小丑
Рет қаралды 54 МЛН
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН
Arrays | C Programming for Beginners  Ep - 22 | Tamil | code io
18:51
code io - Tamil
Рет қаралды 95 М.
Special Programs in C− Check If The Number Is Armstrong Number
12:16
Nested Loops  | C Programming for Beginners  Ep - 21 | Tamil | code io
15:37
Gmart Paavangal | Parithabangal
16:27
Parithabangal
Рет қаралды 2,5 МЛН
File Handling in C part - 1 | C-Programming Ep-35 | Tamil | code io
16:48
C Programming for Beginners in Tamil | Complete Course | code io - Tamil
6:30:20
Functions in C | C-Programming Ep-28 | Tamil | code io
10:51
code io - Tamil
Рет қаралды 64 М.
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН