Factor of Number In C Language

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

In C language, you can use a for loop to find the factors of a number. You can start the loop at 1 and increment it until it reaches the number itself. Within the loop, you can use the modulus operator (%), which returns the remainder when one number is divided by another, to check if the current loop variable is a factor of the number. If the remainder is 0, then the current loop variable is a factor and can be printed or stored in an array.

Here's an example of C code that finds the factors of a number:

Copy code

#include <stdio.h> int main() {    int n, i;    printf("Enter a positive integer: ");    scanf("%d", &n);    printf("Factors of %d are: ", n);    for(i = 1; i <= n; ++i) {        if (n % i == 0) {            printf("%d ", i);        }    }    return 0; }

This code prompts the user to enter a positive integer, and then uses a for loop to iterate through all integers from 1 to the entered number. It checks if the current loop variable is a factor of the entered number by using the modulus operator. If it is, it prints the current loop variable as a factor.

7. Loops

0 Comments

Start the conversation!

Be the first to share your thoughts

Frequently Asked Questions About Sciaku Courses & Services

Quick answers to common questions about our courses, quizzes, and learning platform

Didn't find what you're looking for?

help_center Contact Support