Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update primeinrange.c for range issue #107

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Aug 14, 2023

  1. Update primeinrange.c for range issue

    Changes made:
    
    The num starts from 2, as 1 is not a prime number.
    Fixed the loop condition in the inner loop: i <= (num / 2) instead of i = (num / 2).
    Added a space after each prime number to improve readability.
    With these changes, the code should work as intended and print the prime numbers between 1 and 100.
    Soyvor authored Aug 14, 2023
    Configuration menu
    Copy the full SHA
    08015c2 View commit details
    Browse the repository at this point in the history