Write a program to generate prime factors of a given integer?
Answers were Sorted based on User's Feedback
Answer / ruchi
#include<stdio.h>
#include<conio.h>
int main()
{
int num,i,f=0,k=0,d,m;
printf("\n Enter the number ");
scanf("%d",&num);
m=num;
while(k<=m)
{
k=k+1;
f=0;
d=num%k;
if(d==0)
{
i=2;
while(i<=k-1)
{
if(k%i==0)
{
break;
}
i++;
}
if(i==k)
{
printf("\nPrime Factor %d ",k);
}
}
}
getch();
}
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / neha
#include<stdio.h>
#include<conio.h>
int main()
{
int num,i=1,j,k;
printf("\n\tEnter the number:");
scanf("%d",&num);
while(i<=num)
{
k=0;
if(num%i==0)
{
j=1;
while(j<=i)
{
if(i%j==0)
k++;
}
j++;
if(k==2)
printf("\n\t%d is a Prime factor:"i);
}
i++;
}
return 0;
}
Is This Answer Correct ? | 3 Yes | 0 No |
write a program to print %d ?
What are header files and what are its uses in C programming?
How can I sort a linked list?
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
What is the use of sizeof () in c?
how we can make 3d venturing graphics on outer interface
What is the memory allocated by the following definition ? int (*x)();
What are identifiers and keywords in c?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
What is scope rule in c?
What are shell structures used for?
Expand the following LKB BKL FFG