w3resource

C Exercises: Find largest prime factor of 438927456

C Programming Challenges: Exercise-19 with Solution

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 Flowchart: Find the largest prime factor of the number 438927456.

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.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/c-programming-exercises/practice/c-programming-practice-exercises-19.php