C Exercises: Find largest prime factor of 438927456
The prime factors of 13195 are 5, 7, 13, 29.
Write a C program to find the largest prime factor of the number 438927456.
C Code:
#include <stdio.h>
int main(void)
{
unsigned long long n = 438927456L;
unsigned long long i;
for (i = 2ULL; i < n; i++) {
//1ULL is 'unsigned long long
while (n % i == 0) {
n /= i;
}
}
printf("%llu\n", n);
return 0;
}
Sample Output:
415651
Flowchart:
C Programming Code Editor:
Contribute your code and comments through Disqus.
Previous C Programming Exercise: Sum even-valued in a Fibonacci sequence.
Next C Programming Exercise: Largest palindrome from two 3-digit numbers.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics