CoolInterview.com - World's Largest Collection of Interview Questions
Home| Ask Questions| About Us| Feedback| Contact Us|
 Interview Questions  
 Our Services  

Get 9,000 Interview Questions & Answers in an eBook.


  • 9500+ Pages
  • 9000 Question & Answers
  • All Tech. Categories
  • 14 MB Content

    Get it now !!



    Send your Resume to 6000 Companies

  • COOLINTERVIEW.COM LANGUAGES C DETAILS



    Question :
    How can we find out prime numbers from 1 to 50?

     Posted by: pooja    Date: 11/15/2008

    Contact Author  Contact Author


    Answer :
    #include<stdio.h>
    #include<conio.h>
    void main()
    {
    int i,j,c,n;
    clrscr();
    for(i=2;i<50;i++)
    {
    c=0;
    for(j=2;j<i;j++)
    {
    if(i%j==0)
    c++;
    }
    if(c==0)
    printf("%d
    ",i);
    }
    getch();
    }

     Posted by: sudheer    

    Contact Author  Contact Author
    a better algo.....
    #include<math.h>
    #include<stdio.h>
    void main()
    {
    int i,j,c,n;
    clrscr();
    for(i=2;i<50;i++)
    {
    c=0;
    for(j=2;j<sqrt(i);j++)
    {
    if(i%j==0)
    c++;
    }
    if(c==0)
    printf("%d
    ",i);
    }
    getch();
    }

     Posted by: jaideep    

    Contact Author  Contact Author
    main(){
    int a,b,c;
    a=2;
    while(a<=50){
    b=a-1;
    while(b>1){
    if(a%b==0)
    printf("it is a%d prime number",a);}
    a++;
    }

     Posted by: nagaraju.botsa    

    Contact Author  Contact Author
    #include<math.h>
    #include<stdio.h>
    void main()
    {
    int i,j,c,n;
    clrscr();
    for(i=2;i<50;i++)
    {
    c=0;
    for(j=2;j<sqrt(i);j++)
    {
    if(i%j==0)
    c++;
    }
    if(c==0)
    printf("%d
    ",i);
    }
    getch();
    }


     Posted by: ucm    

    Contact Author  Contact Author

    © CoolInterview.com
    Today's Special: Get Free Magazine from SAP now!

    A D V E R T I S E M E N T








    If you have the better answer, then send it to us. We will display your answer after the approval.
    Name :*
    Email Id :*
    Answer :*
    Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
    Process Verification  Enter the above shown code:*
    Inform me about updated answers to this question

       


    Rate the above answer. Help us to know about the answer.
    Category C Interview Questions
    Rating (0.0) By 0 users
    Added 11/15/2008
    Views 57
    Rate it!
    Free Offers 300 Free Magazines for you. No credit card required. No Shipping Charges. Absolutely Free for 1 Year.

    Please Note: We keep on updating better answers to this site. Subscribe to our newsletter to get notified when better answer is posted.

    Notify me when better answer is posted!
    Email:

    View ALL C Interview Questions


    Sponsored Links  

    Google Search

    Google

    CoolInterview.com is a part of Vyom Network.
    Copyright ©2003-2009 Vyom Technosoft Pvt. Ltd., All Rights Reserved. Privacy Policy
    Page URL: http://www.coolinterview.com/interview/16178/Default.asp?cachecommand=bypass


    Download Yahoo Messenger | Placement Papers| FREE SMS | ASP .Net Tutorial

    1.39