answersLogoWhite

0

#include<stdio.h>

void findfact(int num)

{

int i;

for(i=1;i<num;i++)

{

if(num%i==0)

printf("Factor for %d is %d\n",num,i);

}

}

main()

{

int a;

printf("\nEnter a number:");

scanf("%d",&a);

findfact(a);

}

User Avatar

Wiki User

16y ago

Still curious? Ask our experts.

Chat with our AI personalities

JudyJudy
Simplicity is my specialty.
Chat with Judy
TaigaTaiga
Every great hero faces trials, and you—yes, YOU—are no exception!
Chat with Taiga
RafaRafa
There's no fun in playing it safe. Why not try something a little unhinged?
Chat with Rafa
More answers

#include<stdio.h>

#include<conio.h>

main()

{

int c,n;

clrscr();

printf("\nenter the number:");

scanf("%d",&n);

c=1;

while(n%c==0)

{

pirntf("\nthe factor is=%d",c);

c=c+1;

}

getch();

}

User Avatar

Wiki User

14y ago
User Avatar

Add your answer:

Earn +20 pts
Q: Write a c program to find factors of given number?
Write your answer...
Submit
Still have questions?
magnify glass
imp