Write a c program that will calculate prime numbers. Your program will ask for a number "n" from the user. Then you will calculate and print the prime number up to "n"th prime number. (I.E. if the user enter 4 then your program will print up to 7 since 7 is the 4th prime number). You must use separate method/function to ask for an user entry, prime number calculation and print the prime numbers. You must print the prime number in following format " Prime Number 1: 2, Prime Number 2: 3, Prime Number 3: 5, etc."
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
29 | 30 | 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 | 1 | 2 |