#include <stdio.h>
int main()
{
    int num, i;

    printf("Enter an integer: ");
    scanf("%d",&num);

    printf("Factors of %d are: ", num);
    for(i=1; i <= num; ++i)
    {
        if (num%i == 0)
        {
            printf("%d ",i);
        }
    }

    return 0;
}

OUTPUT :-





For Other Programs Visit The WebSite:-   https://www.techapurba.com/
                                                                                                                      
Follow Me On Social Media :-
INSTA photography page :- https://www.instagram.com/photo_mania_hub/

Insta photography link :- https://www.instagram.com/photo_mania_hub/
For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/