We have a file on our local disk with numbers in it. Our task in a C program is to read the numbers from the file and determine if the numbers are prime or not prime. If the numbers are prime, then we need to write to a new output file. For this task, we have a findPrime function which has the logic to check the numbers in the file for prime numbers. We have a thread function which calls this findPrime function and then sends the prime count and the prime numbers from the thread function to the main function. Please demonstrate with an example for simplicity and clarity.