C Program to Check Whether a Number is Prime or Not.

C Program to Check Whether a Number is Prime or Not.

#include <stdio.h> int main() {     int n, i, flag = 0;     printf("Enter a positive integer: "); …

Load More
That is All