C program to delete prime numbers from an array
Given an array of integer elements and we have to remove prime numbers using C program.
Example:
Input:
Array elements are:
100, 200, 31, 13, 97, 10, 20, 11
Output:
Array elements after removing prime numbers:
100
200
10
20
Program to remove prime numbers from an array using C program
Output