Program to find factor of any number in C-language

#include<stdio.h>
int main()
{
int n,f=1;
printf("Enter any number\n");
scanf("%d",&n);
printf("Factor of %d is\n",n);
for(int i=1;i<=n;i++)
{
if(n%i==0)
printf("%d ",i);
}
}

OUTPUT
Enter any number
10
Factor of 10 is
1 2  5 10

Comments

Popular posts

Creative pattern of butterfly in C-language

Introduction of C-language.

Variable & Datatype for C-programming

Program to cheque enter number is even or odd in c-language

Addition of two numbers in c language

Language Translator of C-language

Program to print the cube of a number in c-language

Program to print compound interest in c-language