@suganya sugi This program is generic ie it can find if the number is Armstrong for 3 digit or even 6 digit. But if you have fixed to a 3 digit number then you don't require loop. Hope this clears your doubt.
@mynameisearlb3 жыл бұрын
Awesome, thank you for explaining everything so quickly and speeding up the video.
@SmartProgramming6 жыл бұрын
great sir, very well explained 👍👍
@sachindotel60058 жыл бұрын
correct me if i'm wrong but i think this only works on 3 digit numbers right ?
@JayTailor459 жыл бұрын
What is that compiler you using ?
@suganyasugi290810 жыл бұрын
can you plzzz.....explain why we are using while loop here.....is it possible to use if else for finding armstrong number????
@prathyushsunny8 жыл бұрын
Thankyou ^^ you've been helpful !
@subassdb89710 жыл бұрын
excellent......very much helpful
@koteswararaoattipatla1407 жыл бұрын
it's really superb!!!!!!!! why cant you try for patterns and series
@anjang13179 жыл бұрын
hi, can you teach me how to install everything so that i can make a c program on my windows laptop. Its hard for me to go to uni everytime i need to do c program. Thanks!
@shiemakiuboud61844 жыл бұрын
thx dude u r a god much love
@37_nishantpande136 жыл бұрын
thanks for the logic bro!
@yousefsalamh65765 жыл бұрын
nice explain, awesome
@laxmihn67516 жыл бұрын
Thank you well explained
@bhavyapopli285410 жыл бұрын
I wanted to print armstrong numbers b/w 101 and 200. The source code which i entered was: #include #include int main() { int reqnum=101,sum=0,digit,temp=reqnum; for(temp
@cdz00710 жыл бұрын
can you make a video of C program to reverse all nos. in an array and print in words the same?
@wethecomputerguys990310 жыл бұрын
Sorry did not get the " print words the same" part can you explain with sample input and output
@cdz00710 жыл бұрын
input: 23 45 827 69 output: thirty two , fifty four , sevenhundered twenty eight , ninenty six
@amarchaudhari13097 жыл бұрын
what if we don't know how many digits are there in original number?
@sridharladdunuri33110 жыл бұрын
sir how can i download ur code sir
@wethecomputerguys990310 жыл бұрын
Link to source code is always available in the description section .. Code : wethecomputerguys.com/2014/08/09/c-practical-and-assignment-programs-armstrong-numbers/
@marnusludick25776 жыл бұрын
I do not recommend this guy`s video. This is not the correct way to determine an armstrong number... this will only work with numbers between 100 and 999. Correct way to determine if a number is an armstrong number, is to first determine the length of the number provided by the user. The length will be there power to the sum of each individual number. You can't assume that the number inserted by the user will always be between 100 and 999. There is armstrong numbers bigger than 1000, thus you have to determine the length of the number, then you can use the pow(number, length) function to get the sum of all the individual numbers, instead of that "sum = sum + UnitsPlace*UnitsPlace*UnitsPlace". this video made me cringe...
@rinchentshering196110 жыл бұрын
Nice one.....but Can you do it in HTML and upload video?
@yousefsalamh65765 жыл бұрын
what if user enter number contain two digit !! your code will not give proper result.