ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
Do you have a collection of Interview Questions and interested to share with us!!
Please send that collection to along with your userid / name. ThanQ
Google
 
Categories >> Software >> Programming-Languages >> C
 
 
 
Question
write a program to check whether a given integer is a strong
number or not?
[Hint:
145=1!+4!+5!
   =1+24+120
   =145]
 Question Submitted By :: Vasu
I also faced this Question!!     Rank Answer Posted By  
 
Answer
void main()  

 { 
 int n,t,f=1,s=0,num;
 printf("enter the num \t:");
 scanf("%d",&n);
 num=n;
 while(num)
 {
	 t=num%10;
	 f=1;
	 while(t)
	 {
		 f=f*t;
		 t--;
	 }
	 s=s+f;
	 num=num/10;
 }
if(n==s)
printf("%d is a strong number",n);
else
printf("%d is not a strong number",n);
}
 
2
Rajesh Kumar S
 
View All Answers
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com