C programming code to list all factors of n

Share This Topic:

Course Details

Field of Study: Computer Science and Engineering
Course Name: C Programming
Course Description: C programming code to list all factors of n

Code
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int n;
printf(“Enter the number\n”);
scanf(“%d”,&n);
for(int i=1;i<=n;i++)
{
if(n%i==0)
printf(“%d “,i);
}
getch();
}

Share this article:
Previous Post: C programming code to add all numbers divisible by 3 from 1 to 1000

December 2, 2014 - In Academics, Computers

Next Post: C programming code to add even and odd numbers up to n

December 2, 2014 - In Academics, Computers

Related Posts

Leave a Reply

Your email address will not be published.