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

  Рет қаралды 29,289

code io - Tamil

code io - Tamil

2 жыл бұрын

C Programming in Tamil for Beginners
Download Link for Dev C++
sourceforge.net/projects/orwe...
Download link for Turbo C++ (Not Recommended)
developerinsider.co/download-...
C Programming Playlist Link - • C Programming
C Apti Playlist Link - • C-Aptitude | Interview...
code io

Пікірлер: 57
@GamingMouze
@GamingMouze Жыл бұрын
5.15 cut ✂️ pannirukinga bro digit++ ethuku use panringa
@31prasannatr16
@31prasannatr16 Жыл бұрын
Bro vid naduvula paathi kaano digitt edhukku use pannigane therila
@sripathiyuvi
@sripathiyuvi 8 ай бұрын
Yess bro, digit ooda function yennanu theriyala
@prabudeva2547
@prabudeva2547 7 ай бұрын
Same doubt bro digit ++yedhuku, increment process but yepudi..
@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. 5 ай бұрын
​@@codeio cut panatha again details ah solunga bro
@mithunchakkaravarthi1
@mithunchakkaravarthi1 Жыл бұрын
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 !
@YogeshS-jl3eq
@YogeshS-jl3eq 6 ай бұрын
Bro (5.15 sec) concept i can't understand. Digit++ ethuku use panringa . Explain Bro?
@jk8869
@jk8869 4 ай бұрын
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.
@VijayKumar-hn2jh
@VijayKumar-hn2jh Жыл бұрын
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
@funoverloaded3567
@funoverloaded3567 Жыл бұрын
bro can you expain the digits par, to find how many digits since it was missing in video
@OPGAMING-ik5bv
@OPGAMING-ik5bv Жыл бұрын
Yeah bro
@RavanStories
@RavanStories 2 жыл бұрын
Why bro copy=n nnu vachi podanum straight ah n nnu vachi try panna koodatha
@reaganmortal8066
@reaganmortal8066 6 ай бұрын
n oda value change aairum bro. Apdi change aaita. If(sum==n) condition ah check pannum pothu false nu varum.
@MohanMohan-yl6mu
@MohanMohan-yl6mu Ай бұрын
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 Ай бұрын
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
@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
@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.
@reaganmortal8066
@reaganmortal8066 6 ай бұрын
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 3 ай бұрын
Bro check whether have you missed statement terminator anywhere else...
@KarthiKeyan-xx9uv
@KarthiKeyan-xx9uv Жыл бұрын
Adam number program podunga bro
@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💗
@MR.World.16
@MR.World.16 Жыл бұрын
Bro video skip aagiruku bro
@s__i__v__u__1__8
@s__i__v__u__1__8 Жыл бұрын
Why copy is used bro?
@loshiniloshu9347
@loshiniloshu9347 Жыл бұрын
Anna nadula kojam kaanum video la
@devanthiranvijay
@devanthiranvijay 11 ай бұрын
I'm literally getting mad to see this again and again digit++ confusing me
@reaganmortal8066
@reaganmortal8066 6 ай бұрын
copy=num; for(digit=0; copy>0; digit++) { copy=copy/10;
@reaganmortal8066
@reaganmortal8066 6 ай бұрын
Intha loop namma input value oda digit count find panna use panrom. Eg: input = 2753. Digit = 4 nu count pannum.
@reaganmortal8066
@reaganmortal8066 6 ай бұрын
Digit theringa tha power ku value kuduka mudiyum. Hope you understand.
@vidhyavarshu2652
@vidhyavarshu2652 Жыл бұрын
Anna purila pls bro explain pannuga
@muthugk1126
@muthugk1126 2 жыл бұрын
Bro digit count find pannura part vittutinga🧐
@dhanulifestyle3211
@dhanulifestyle3211 Жыл бұрын
Ama bro
@user-xz5xr6rv9f
@user-xz5xr6rv9f 9 ай бұрын
bro experienced teachera vida neenga teach pandrathu easiya irukku videos potttute irunga
@codeio
@codeio 9 ай бұрын
Happy to hear that 🤩🤩🤩
@curlsbae72.
@curlsbae72. 5 ай бұрын
na unga videos pathu tha bro learn pantra super ah solitharinga... 5:15 skip anatha again upload pani videos potunga bro
@jayaseelanj9597
@jayaseelanj9597 Жыл бұрын
Sum=0 explain please bro
@johnsundararaj3871
@johnsundararaj3871 3 ай бұрын
if sum contain any number or garbage value we cant calculate the sum of the digit .
@amuthasivakolundu9936
@amuthasivakolundu9936 7 ай бұрын
Declear the sum =0
@amuthasivakolundu9936
@amuthasivakolundu9936 7 ай бұрын
The code is not working
@amuthasivakolundu9936
@amuthasivakolundu9936 7 ай бұрын
Declarations of sum=0 the code will work
@reaganmortal8066
@reaganmortal8066 6 ай бұрын
// 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; }
@madhankumarr6019
@madhankumarr6019 Жыл бұрын
Bro who use copy? bro
@b.pradeepsuriya9163
@b.pradeepsuriya9163 Жыл бұрын
while loop finish aana peragu n ooda value 0 aagidum so, namma n=copy endru loop start aaguvathairruku munnadi declear pannurom ok
@madhankumarr6019
@madhankumarr6019 Жыл бұрын
Purijathu thanks bro
@b.pradeepsuriya9163
@b.pradeepsuriya9163 Жыл бұрын
ok
@b.pradeepsuriya9163
@b.pradeepsuriya9163 Жыл бұрын
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 Жыл бұрын
I also bro
@sivaeditz6772
@sivaeditz6772 Жыл бұрын
🥴😵
Important Subjects for Placement !!  #shorts
0:59
code io - Tamil
Рет қаралды 3,4 М.
Хотите поиграть в такую?😄
00:16
МЯТНАЯ ФАНТА
Рет қаралды 2,7 МЛН
DEFINITELY NOT HAPPENING ON MY WATCH! 😒
00:12
Laro Benz
Рет қаралды 51 МЛН
Nested Loops  | C Programming for Beginners  Ep - 21 | Tamil | code io
15:37
Prime Number  | C Programming for Beginners  Ep - 20 | Tamil | code io
8:25
Arrays | C Programming for Beginners  Ep - 22 | Tamil | code io
18:51
code io - Tamil
Рет қаралды 67 М.
you will never ask about pointers again after watching this video
8:03
Low Level Learning
Рет қаралды 2,1 МЛН