Skip to content
Home » Strong Number Program in C | C Language Tutorial | Mr. Srinivas naresh i technology c language

Strong Number Program in C | C Language Tutorial | Mr. Srinivas naresh i technology c language

Strong Number Program in C | C Language Tutorial | Mr. Srinivas  naresh i technology c language



Strong Number Program in C Programming
C Language Tutorial Videos | Mr. Srinivas
** For Online Training Registration: ? Call: +91-8179191999

? Visit Our Website for Classroom Training:

? For Online Training:

————————–

? About NareshIT:

“Naresh IT is having 14+ years of experience in software training industry and the best Software Training Institute for online training, classroom training, weekend training, corporate training of Hadoop, Salesforce, AWS, DevOps, Spark, Data Science, Python, Tableau, RPA ,Java, C#.NET, ASP.NET, Oracle, Testing Tools, Silver light, Linq, SQL Server, Selenium, Android, iPhone, C Language, C++, PHP and Digital Marketing in USA,Hyderabad, Chennai and Vijayawada,Bangalore India which provides online training across all the locations

See also  #MicrosoftEvent Live technology background video 4k

————————–

? Our Online Training Features:
1.Training with Real-Time Experts
2.Industry Specific Scenario’s
3.Flexible Timings
4.Soft Copy of Material
5. Share Videos of each and every session.

See also  Alzheimer's Awareness Month and New Technology at Inspira a new technology

————————–

Please write back to us at us.training@nareshit.com/online@nareshit.com or Call us at USA:

+1404-232-9879 or India: +918179191999

** Check The Below Links**
? For Course Reg:
? Subscribe to Our Channel:
? Circle us on G+:
? Like us on Facebook:
? Follow us on Twitter:
? Follow us on Linkedin:

? Follow us on Instagram: .

Images related to the topic naresh i technology c language

Strong Number Program in C | C Language Tutorial | Mr. Srinivas

Strong Number Program in C | C Language Tutorial | Mr. Srinivas

Search related to the topic Strong Number Program in C | C Language Tutorial | Mr. Srinivas

#Strong #Number #Program #Language #Tutorial #Srinivas
Strong Number Program in C | C Language Tutorial | Mr. Srinivas
naresh i technology c language
See all the latest ways to make money online: See more here
See all the latest ways to make money online: See more here

See also  SOLAR 76 BGII - Farmer: SURESHBHAI CHAVDA, DAGAD, JND, GJ j n d technologies

20 thoughts on “Strong Number Program in C | C Language Tutorial | Mr. Srinivas naresh i technology c language”

  1. Sir I have a doubt…in this video u declared n as temporary variable because its value is changing but in modify operators the variables and not declared as temporary variables….why sir plz clarify my doubt

  2. #include <stdio.h>

    int main() {
    int n,r,i,fact=1,sum=0,t;

    printf("enter a number:");
    scanf("%d",&n);
    t=n;
    while(n>0)
    {
    r=n%10;
    fact=1;
    for(i=r;i>=1;i–)
    {
    fact=fact*i;
    }
    sum=sum+fact;

    n=n/10;
    }
    n=t;

    if(sum==n)
    printf("strong number");
    else
    printf("not strong");

    return 0;
    }

  3. #include <stdio.h>

    int main()
    {
    int n,i,r,temp,fact,sum=0;
    printf("enter the number:");
    scanf("%d",&n);
    temp=n;
    while(n>0)
    {
    r=n%10;
    fact=1;
    for(i=r;i>=1;i–)
    {
    fact=fact*i;
    }
    sum=sum+fact;
    n=n/10;
    }
    n=temp;
    if(n==sum)
    printf("it is a strong number");
    else
    printf("it is not a strong number");
    }

Leave a Reply

Your email address will not be published. Required fields are marked *