When we talk about programming languages, C and C++ appear in the list as early programming...
Category - C
How To write a C Program without the main Function
Here we have a c program which looks like it has no main function. Can we write a C Program without...
Prime Number or Composite Number Example Program in C Programming Language
A prime number (or a prime) is a natural number greater than 1 that has no positive divisors other...
C Example Program to Add Two Numbers Entered By the User
Here we have a C example program to add two numbers entered by the User In this program first we...
Guess the Number C Game Program
In this tutorial we are writing Guess the Number C Program. First the program will print...
Multithreading in C
A thread is a single sequence stream within in a process. Because threads have some of the...
Simple Calculator Program in C
This example program accepts two input numbers and performs an arithmetic operation such as...
C Program to Search a Record by Name in Binary File
Program to Search a Record by Name in Binary File Input for C Program to Search Record by Name This...
Convert mm millimeter to inches
This is a simple basic C program. it takes input from user at run time. The user enters the value...
Check Armstrong Number of n digits in C
An Armstrong Number is a number that when you raise each digit of the number to the power of the...
Reverse an integer in C language
C program to reverse the number entered by the user, then displays the reversed number on the...
C Program to Calculate Area and Perimeter of Rectangle
To find the area of a rectangle or a square you need to multiply the length and the width of...
C Program to Count Total Number of Negative Elements in an Array
In this example you will learn how to find and count all negative elements in array. How to count...