Pages

Showing posts with label prime number. Show all posts
Showing posts with label prime number. Show all posts

Determining whether the given number is prime or not in C

This program test the prime number. #include <stdio.h> #include <conio.h> void main() {      int num, i, c = 0;      pr...

0 Comments

Generating Prime Number in C

This is an example of generating prime number. It takes input form user and generate prime number upto given number. The main logic behind ...

0 Comments