Only the function is written below
Function of prime factors
void prime(int x) {
int i, j;
wrote this because it wanted for information but don't have any
for (i = 2; i <= x; i++) {
if (x % i == 0) {
for (j = 2; j <= i; j++) {
if (i == j) {
printf("%d", i);
} else
if ((i % j) != 0) {
printf("%d\n", i);
The output should be prime numbers of the number and the repeated prime no.s also should be seen so by mutiplication we get the original number
goto l;
Here the goto
statement takes out of if
loop
} else {
break;
}
}
l:
x = x / i;
}
}
}
Code seems to be correct and also is giving the prime numbers but is the factors are not repeating itself.
for e.g: 24
output should be 2,2,3
but the output is coming as 2,3
My solution. I can add comments if you needed.
Testing: