Praveen | Typing Speed Test is a very useful Software available for free Download.
Showing posts with label Others. Show all posts
Showing posts with label Others. Show all posts

C Program to Display the System Date

     C program to Display the Current time on those system. getdate() methods to get date information with the helps of Struct date s.


Display System date in C programming code

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


C Programs to Merge Two Array in sorted

     C program to merge two arrays into third array. Arrays are assumed to be sorted in ascending order. You enter two arrays and combine them to get a large array. Then sort those larges array by using Bubble Sort in Ascending order.


Two Array combine Sorted in C programming code

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


C Program Convert Decimal Number to Binary Number


      In This Program, Convert Decimal Number into Binary Number. Binary Number Means The Set of Digits in Form of 1 or 0 Form. All Computer System Known Only Combination of Binary Digits. Every Operation Can Perform in The System With The Help of Binary Numbers.


C programming code

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

C Program to Convert Binary Number to Decimal Number


      In This Program, Convert Binary Number to Decimal Number. Binary Number Means all Digits 1 Or 0, Those Set of Number Called Binary Number to Convert Decimal Number or Simple Number.


C programming code

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

C Program to Delete Number in Array


      In This Program, Firstly Create The Array by The User. And Also Enter The Deleted Number, Then This Program Search Number And Delete Those Number. After Deleted to Display The All Remain Element.


C programming code

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

C Program to Search Number in Array


      In This Program, Search Number in The Array to be Entered by The User. This Program to Find Out Those Search Number Found Or Not.


C programming code

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

C Program to Find Number is Even Or Odd in Given Range


      This C Program to Find Out Even or Odd number in The Given Range of The user. In This Program to Display Even or Odd Number.


C programming code

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


C Program to Find Number is Even or Odd


      This C Program to Find Given Number is Even Or Odd Numbers. It is a Simplest Method of Finding Number is Even Or Odd number


C programming code

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

C Programs to Find LCM of Two Numbers

      This C program to check Lowest Factor Number of Two Number. It is also Called LCM. This Number has use Integers Numbers.

C programming code

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

Check The Inputed String is Uppercase, Lowercase, Numbers, Or Symboles

     Check The Inputed String is Uppercase, Lowercase Or Number, Or Symboles with the Help of Cheracter ASCII values. It is Simple Methods of Finding the String Types.


C program code

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

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 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>

C Programs to Find HCF Number of Two Numbers

      This C program to check Height Number of two number. It is also Called HCF. This Number has use Integers Numbers.

C programming code

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

C Programs to Check the Vowel Or Not in the Given String

      This C program to check alphabet is vowel or not. Both lower case and upper case are checked alphabet. In this programs to check vowel in the string, And find out the vowels to print.


C programming code in a string

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

C Programs to Check the Vowel Or Not in the Given Alphabet

      This C program to check alphabet is vowel or not. Both lower case and upper case are checked alphabet, And find out the vowels to print.


C programming code in an alphabet

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

C Programs to Multiply Digits

      C programs to Multiply digits are given below. In this program to Multiply digits also given by the users. It is the Miner difference in the Add and Multiply digits given by the user.


Multiply digits to C programming code

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


C Programs to Check Year is Leap Year Or Not

      In this C program to check leap year or not by the user enter. Leap year means, year to divided by 400, or 200, or 4 then remaining is zero those year is leap year.


C programming code

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


C Programs to Add N Numbers

      This c program to add n numbers which will be entered by the user. If the user enter the 0 then automatically exit the addition of a numbers, And display the sum of numbers, And also display the numbers of added numbers to count. In our C program to add numbers we are not using an array, if you wish you can use an array.


C programming code

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

C Programs to Division

      C program to perform basic arithmetic operations i.e. Addition, Subtraction, Multiplication and Division into minimum two numbers. Numbers are assumed to be integers or float (Real) and will be entered by the user or making a constant it means values assigned in the programs.



  C Programming Code for Division

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

C Programs to Multiplication

      C program to perform basic arithmetic operations i.e. Addition, Subtraction, Multiplication and Division into minimum two numbers. Numbers are assumed to be integers or float (Real) and will be entered by the user or making a constant it means values assigned in the programs.



C Programming Code for Multiplication

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

C Programs to Subtraction

      C program to perform basic arithmetic operations i.e. Addition, Subtraction, Multiplication and Division into minimum two numbers. Numbers are assumed to be integers or float (Real) and will be entered by the user or making a constant it means values assigned in the programs.


C Programming Code for Subtraction

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

C Programs to Addition

      C program to perform basic arithmetic operations i.e. Addition, Subtraction, Multiplication and Division into minimum two numbers. Numbers are assumed to be integers or float (Real) and will be entered by the user or making a constant it means values assigned in the programs.


  C Programming Code for Addition

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