Praveen | Typing Speed Test is a very useful Software available for free Download.

First C Hello Program

      First C program prints hello world, printf function is used to display text on screen, '\n' places cursor on the beginning of next line, all function detail included in the "stdio.h" header file as a printf and int, And getch function details include in "conio.h" header file. This may be your first c code while learning programming.


C Programming Code

#include<stdio.h>
#include<conio.h>

C Programs to Check Armstrong Number

      This C program to check the number is Armstrong number or Not. Armstrong number means this number is equal to sum of cubes of individual digits of a those number. For example:- 153=13 + 53 + 33.


C program code

#include<stdio.h>
#include<conio.h>

C Programs to Check Prime Number

      This C program to check Prime number or Not. Prime number means those number to divided by itself or 1 like as 5, 7, 11.


C program code

#include<stdio.h>
#include<conio.h>

C Programs to Check Palindrome Number

      In this C program to check the number is Palindrome or Not. Palindrome means those number is equal to Reverse number. For example:- 12321, 171.


Check Palindrome C programming code

#include<stdio.h>
#include<conio.h>


 

C Programs to Reverse Number

      In this C program to Reverse integer number entered by the user. It means converts the digits positions those enter by the user's integer number. For example:- 5243 Reverse is=3425.


Reverse number to C programming code

#include<stdio.h>
#include<conio.h>



C Programs to Factorial

      Factorial C program to findout every numbers of the integer numbers. Factorial means any numbers to multiply decreasing of his own numbers upto one numbers. In the factorial, zero factorial is equal to one. Factorial are denoted by number!. For example:- 5! = 120.


Factorial C programs codes

#include<stdio.h>
#include<conio.h>

C Programs to Add Digits

      C programs to Add digits are given below. In the first program add the digits given by the users.


Add digits to C programming code

#include<stdio.h>
#include<conio.h>



C Programs to Print Double Pyramid Patterns Symboles

      Accourding to me, any patterns are designed with use of for loop, And it is a Simple way to print any patterns. Any patterns are designed by the Combinations of any for loop and any other loops or conditions.


C programming code of patterns

#include<stdio.h>
#include<conio.h>

C Programs to Bubble sort

      Bubble sorting to sort numbers, And arrange them in ascending order or descending order. Bubble sorting means one number to check next number then exchange or not, Then again check to second number to check third number then exchange or not By this conditions, This process is perform sequentially.


Bubble sorting in Descending order C programming code

#include<stdio.h>
#include<conio.h>


C Programs to Selection Sort

      Selection sorting to sort numbers, And arrange them in ascending order or descending order. Selection sorting in ascending order means one element to check any other elements of sequentially, if selected number is greater then to exchange positions of numbers, Otherwise continue to perform the specific operations.


Selection sorting in Ascending order C programming code

#include<stdio.h>
#include<conio.h>


C Programs to Fibonacci Series

      C programming in Fibonacci series means to Add First two numbers is the third number, And Fibonacci series Start zero number. Fibonacci series is 0,1,1,2,3,5,8,..... For example:- (1+1=2), (1+2=3).


Fibonacci series in C programming code

#include<stdio.h>
#include<conio.h>

C Programs to Subtract Matrix

      Subtract of two matrix are given by the user, And also given range of the matrix by the user. It is a simple method of the subtract of two matrix.


C programming code

#include<stdio.h>
#include<conio.h>


C Programs to Matrix Multiplication

      This program multiplies two matrices which will be entered by the user, And also enter the range of matrix by the user.


C programming code

#include<stdio.h>
#include<conio.h>


C Programs to Transpose Matrix

      This c program prints transpose of a matrix. It is obtained by interchanging rows and columns of a matrix. When we transpose a matrix then the order of matrix changes, but for a square matrix order remains same.


C programming code

#include<stdio.h>
#include<conio.h>


C Programs to Print Any Patterns of Numbers And Symboles

       Accourding to me, Any patterns are designed with use of for loop, And it is a Simple way to print any patterns. Any patterns are designed by the Combinations of any for loop and any other loops or conditions.


C programming code of patterns

#include<conio.h>
#include<stdio.h>

C Programs to Draw N Number of Tables

      This C program to Draw N Number of Tables. This Number has use Integers Numbers, And User Enter The First to Last Numbers to be Draw Table. For Example:- 2 to 9, 1 to 99.

C programming code

#include<conio.h>
#include<stdio.h>