Monday, August 4, 2014

C Program to Convert a Decimal Number to Binary & Count the Number of 1s

This C Program converts a decimal number into binary & count the number of 1s. The program uses module operation and multiplication with base 2 operation for conversion. It also uses modulo operation to check for 1′s and accordingly increments the count of 1s.
Here is source code of the C program to convert a decimal number to binary & count the number of 1s. The C program is successfully compiled and run on a Linux system. The program output is also shown below.
  1. /*
  2.  * C program to accept a decimal number and convert it to binary
  3.  * and count the number of 1's in the binary number
  4.  */
  5. #include <stdio.h>
  6.  
  7. void main()
  8. {
  9.     long num, decimal_num, remainder, base = 1, binary = 0, no_of_1s = 0;
  10.  
  11.     printf("Enter a decimal integer \n");
  12.     scanf("%ld", &num);
  13.     decimal_num = num;
  14.     while (num > 0)
  15.     {
  16.         remainder = num % 2;
  17.         /*  To count no.of 1s */
  18.         if (remainder == 1)
  19.         {
  20.             no_of_1s++;
  21.         }
  22.         binary = binary + remainder * base;
  23.         num = num / 2;
  24.         base = base * 10;
  25.     }
  26.     printf("Input number is = %d\n", decimal_num);
  27.     printf("Its binary equivalent is = %ld\n", binary);
  28.     printf("No.of 1's in the binary number is = %d\n", no_of_1s);
  29. }

$ cc pgm46.c
$ a.out
Enter a decimal integer
134
Input number is = 134
Its binary equivalent is = 10000110
No.of 1's in the binary number is = 3

C Program to Illustrate how User Authentication is Done

This C Program illustrate how user authentication is done. The program accepts the username and password. It checks whether the password is correct with respect to the username.
Here is source code of the C program to illustrate user authentication. The C program is successfully compiled and run on a Linux system. The program output is also shown below.
  1. /*
  2.  * C program is to illustrate how user authentication is done.
  3.  * Program asks for the user name and password and displays
  4.  * the password as '*' character
  5.  */
  6. #include <stdio.h>
  7.  
  8. void main()
  9. {
  10.  char password[10], username[10], ch;
  11.  int i;
  12.  
  13.  printf("Enter User name: ");
  14.  gets(username);
  15.  printf("Enter the password < any 8 characters>: ");
  16.  for (i = 0; i < 8; i++)
  17.  {
  18.             ch = getchar();
  19.             password[i] = ch;
  20.             ch = '*' ;
  21.             printf("%c", ch);
  22.  }
  23.         password[i] = '\0';
  24.  /*  Original password can be printed, if needed */
  25.  printf("\n Your password is :");
  26.  for (i = 0; i < 8; i++)
  27.  {
  28.             printf("%c", password[i]);
  29.  }
  30. }

$ cc pgm43.c
$ a.out
Enter User name: rajaraman
Enter the password <any 8 characters>: shashi12
********
Your password is :shashi12

C Program to Reverse a Given Number

This C Program reverses a given number by using modulo operation.
Here is source code of the C program to reverse a given number. The C program is successfully compiled and run on a Linux system. The program output is also shown below.
  1. /*
  2.  * C program to accept an integer and reverse it
  3.  */
  4. #include <stdio.h>
  5.  
  6. void main()
  7. {
  8.     long  num, reverse = 0, temp, remainder;
  9.  
  10.     printf("Enter the number\n");
  11.     scanf("%ld", &num);
  12.     temp = num;
  13.     while (num > 0)
  14.     {
  15.         remainder = num % 10;
  16.         reverse = reverse * 10 + remainder;
  17.         num /= 10;
  18.     }
  19.     printf("Given number = %ld\n", temp);
  20.     printf("Its reverse is = %ld\n", reverse);
  21. }

$ cc pgm42.c
$ a.out
Enter the number
567865
Given number   = 567865
Its reverse is = 568765

C Program to Convert the given Binary Number into Decimal

This C Program converts the given binary number into decimal. The program reads the binary number, does a modulo operation to get the remainder, multiples the total by base 2 and adds the modulo and repeats the steps.
Here is source code of the C program to covert binary number to decimal. The C program is successfully compiled and run on a Linux system. The program output is also shown below.
  1. /*
  2.  * C program to convert the given binary number into decimal
  3.  */
  4. #include <stdio.h>
  5.  
  6. void main()
  7. {
  8.     int  num, binary_val, decimal_val = 0, base = 1, rem;
  9.  
  10.     printf("Enter a binary number(1s and 0s) \n");
  11.     scanf("%d", &num); /* maximum five digits */
  12.     binary_val = num;
  13.     while (num > 0)
  14.     {
  15.         rem = num % 10;
  16.         decimal_val = decimal_val + rem * base;
  17.         num = num / 10 ;
  18.         base = base * 2;
  19.     }
  20.     printf("The Binary number is = %d \n", binary_val);
  21.     printf("Its decimal equivalent is = %d \n", decimal_val);
  22. }

$ cc pgm38.c
$ a.out
Enter a binary number(1s and 0s)
10101001
The Binary number is = 10101001
Its decimal equivalent is = 169S

C Program to Read Two Integers M and N & Swap their Values

This C Program reads two integers & swap their values.
Here is source code of the C program to read two integers & swap their values. The C program is successfully compiled and run on a Linux system. The program output is also shown below.
  1. /*
  2.  * C program to read two integers M and N and to swap their values.
  3.  * Use a user-defined function for swapping. Output the values of M
  4.  * and N before and after swapping.
  5.  */
  6. #include <stdio.h>
  7. void swap(float *ptr1, float  *ptr2);
  8.  
  9. void main()
  10. {
  11.     float m, n;
  12.  
  13.     printf("Enter the values of M and N \n");
  14.     scanf("%f %f", &m, &n);
  15.     printf("Before Swapping:M = %5.2ftN = %5.2f\n", m, n);
  16.     swap(&m, &n);
  17.     printf("After Swapping:M  = %5.2ftN = %5.2f\n", m, n);
  18. }
  19. /*  Function swap - to interchanges the contents of two items */
  20. void swap(float *ptr1, float *ptr2)
  21. {
  22.     float temp;
  23.  
  24.     temp = *ptr1;
  25.     *ptr1 = *ptr2;
  26.     *ptr2 = temp;
  27. }

$ cc pgm36.c
$ a.out
Enter the values of M and N
2 3
Before Swapping:M =  2.00    N =  3.00
After Swapping:M  =  3.00    N =  2.00

C Program to Find the Number of Integers Divisible by 5

This C Program calculates the number of integers divisible by 5. This program checks if the given number is divisible by 5 and then prints an appropriate message.
Here is source code of the C program to calculate the number of integers divisible by 5. The C program is successfully compiled and run on a Linux system. The program output is also shown below.
  1. /*
  2.  * C program to find the number of integers divisible by 
  3.  * 5 between the given range num1 and num2, where num1 < num2.
  4.  *
  5.  * Also find the sum of all these integer numbers which are divisible
  6.  * by 5 and display the total.
  7.  */
  8. #include <stdio.h>
  9.  
  10. void main()
  11. {
  12.     int i, num1, num2, count = 0, sum = 0;
  13.  
  14.     printf("Enter the value of num1 and num2 \n");
  15.     scanf("%d %d", &num1, &num2);
  16.     /* Count the number and compute their sum*/
  17.     printf("Integers divisible by 5 are \n");
  18.     for (i = num1; i < num2; i++)
  19.     {
  20.         if (i % 5 == 0)
  21.         {
  22.             printf("%3d,", i);
  23.             count++;
  24.             sum = sum + i;
  25.         }
  26.     }
  27.     printf("\n Number of integers divisible by 5 between %d and %d =
  28.  %d\n", num1, num2, count);
  29.     printf("Sum of all integers that are divisible by 5 = %d\n", sum);
  30. }

$ cc pgm18.c
$ a.out
Enter the value of num1 and num2
12 17
Integers divisible by 5 are
 15,
Number of integers divisible by 5 between 12 and 17 = 1
Sum of all integers that are divisible by 5 = 15

C Program to Reverse a Number & Check if it is a Palindrome

This C Program reverses a number & checks if it is a palindrome or not. First it reverses a number. Then it checks if given number and reversed numbers are equal. If they are equal, then its a palindrome. Here is source code of the C program to reverse a number & checks it is a palindrome or not. The C program is successfully compiled and run on a Linux system. The program output is also shown below.
  1. /*
  2.  * C program to reverse a given integer number and check
  3.  * whether it is a palindrome. Display the given number
  4.  * with appropriate message
  5.  */
  6. #include <stdio.h>
  7.  
  8. void main()
  9. {
  10.     int num, temp, remainder, reverse = 0;
  11.  
  12.     printf("Enter an integer \n");
  13.     scanf("%d", &num);
  14.     /*  original number is stored at temp */
  15.     temp = num;
  16.     while (num > 0)
  17.     {
  18.         remainder = num % 10;
  19.         reverse = reverse * 10 + remainder;
  20.         num /= 10;
  21.     }
  22.     printf("Given number is = %d\n", temp);
  23.     printf("Its reverse is  = %d\n", reverse);
  24.     if (temp == reverse)
  25.         printf("Number is a palindrome \n");
  26.     else
  27.         printf("Number is not a palindrome \n");
  28. }

$ cc pgm13.c
$ a.out
Enter an integer
6789
Given number is = 6789
Its reverse is  = 9876
Number is not a palindrome
 
$ a.out
Enter an integer
58085
Given number is = 58085
Its reverse is  = 58085
Number i

C Program to Calculate the Sum of Odd & Even Numbers

This C Program calculates the sum of odd & even numbers. The program first seperates odd and even numbers. Later it adds the odd and even numbers seperately.
Here is source code of the C program to calculate the sum of odd & even numbers. The C program is successfully compiled and run on a Linux system. The program output is also shown below.
  1. /*
  2.  * C program to find the sum of odd and even numbers from 1 to N
  3.  */
  4. #include <stdio.h>
  5.  
  6. void main()
  7. {
  8.     int i, num, odd_sum = 0, even_sum = 0;
  9.  
  10.     printf("Enter the value of num\n");
  11.     scanf("%d", &num);
  12.     for (i = 1; i <= num; i++)
  13.     {
  14.         if (i % 2 == 0)
  15.             even_sum = even_sum + i;
  16.         else
  17.             odd_sum = odd_sum + i;
  18.     }
  19.     printf("Sum of all odd numbers  = %d\n", odd_sum);
  20.     printf("Sum of all even numbers = %d\n", even_sum);
  21. }

$ cc pgm12.c
$ a.out
Enter the value of num
10
Sum of all odd numbers  = 25
Sum of all even numbers = 30
 
$ a.out
Enter the value of num
100
Sum of all odd numbers  = 2500
Sum of all even numbers = 2550

C Program to Find the Biggest of 3 Numbers

This C Program calculates the biggest of 3 numbers.The program assumes 3 numbers as a, b, c. First it compares any 2 numbers check which is bigger. After that it compares the biggest element with the remaining number. Now the number which is greater becomes your biggest of 3 numbers. Here is source code of the C program to calculate the biggest of 3 numbers. The C program is successfully compiled and run on a Linux system. The program output is also shown below.
  1. /*
  2.  * C program to find the biggest of three numbers
  3.  */
  4. #include <stdio.h>
  5.  
  6. void main()
  7. {
  8.     int num1, num2, num3;
  9.  
  10.     printf("Enter the values of num1, num2 and num3\n");
  11.     scanf("%d %d %d", &num1, &num2, &num3);
  12.     printf("num1 = %d\tnum2 = %d\tnum3 = %d\n", num1, num2, num3);
  13.     if (num1 > num2)
  14.     {
  15.         if (num1 > num3)
  16.         {
  17.             printf("num1 is the greatest among three \n");
  18.         }
  19.         else
  20.         {
  21.             printf("num3 is the greatest among three \n");
  22.         }
  23.     }
  24.     else if (num2 > num3)
  25.         printf("num2 is the greatest among three \n");
  26.     else
  27.         printf("num3 is the greatest among three \n");
  28. }

$ cc pgm6.c
$ a.out
Enter the values of num1, num2 and num3
6 8 10
num1 = 6  num2 = 8  num3 = 10
num3 is the greatest among three

C Program to Check if a given Integer is Positive or Negative

his C Program checks if a given integer is positive or negative. Here if a number is greater than 0 then that number is a positive number. If a number is less than 0 then the number is negative number.
Here is source code of the C program which checks a given integer is positive or negative. The C program is successfully compiled and run on a Linux system. The program output is also shown below.
  1. /*
  2.  * C program to check whether a given integer is positive
  3.  * or negative
  4.  */
  5. #include <stdio.h>
  6.  
  7. void main()
  8. {
  9.     int number;
  10.  
  11.     printf("Enter a number \n");
  12.     scanf("%d", &number);
  13.     if (number >= 0)
  14.         printf("%d is a positive number \n", number);
  15.     else
  16.         printf("%d is a negative number \n", number);
  17. }

$ cc pgm5.c
$ a.out
Enter a number
-10
-10 is a negative number
 
$ a.out
Enter a number
45
45 is a positive number

C Program to Check if a given Integer is Odd or Even

This C Program checks if a given integer is odd or even. Here if a given number is divisible by 2 with the remainder 0 then the number is even number. If the number is not divisible by 2 then that number will be odd number.
Here is source code of the C program which checks a given integer is odd or even. The C program is successfully compiled and run on a Linux system. The program output is also shown below.
  1. /*
  2.  * C program to check whether a given integer is odd or even
  3.  */
  4. #include <stdio.h>
  5.  
  6. void main()
  7. {
  8.     int ival, remainder;
  9.  
  10.     printf("Enter an integer : ");
  11.     scanf("%d", &ival);
  12.     remainder = ival % 2;
  13.     if (remainder == 0)
  14.         printf("%d is an even integer\n", ival);
  15.     else
  16.         printf("%d is an odd integer\n", ival);
  17. }

$ cc pgm4.c
$ a.out
Enter an integer : 100
100 is an even integer
 
$ a.out
Enter an integer : 105
105 is an odd integer

Tuesday, April 1, 2014

C Program to Calculate Area of Circle using Pointer

Calculate Area of Circle using Pointer :

#include<stdio.h>

void areaperi ( int r, float *a, float *p )
{
*a = 3.14 * r * r ;
*p = 2 * 3.14 * r ;
}

void main( )
{
int radius ;
float area, perimeter ;

printf ( "nEnter radius of a circle " ) ;
scanf ( "%d", &radius ) ;

areaperi ( radius, &area, &perimeter ) ;

printf ( "Area = %f", area ) ;
printf ( "nPerimeter = %f", perimeter ) ;
}

Output:

Enter radius of a circle 5
Area = 78.500000
Perimeter = 31.400000

C Program to Calculate Area of Square

C Program for Beginners : Area of Square

Shape : Square
   Formula : side * side
Definition :
  1. A plane rectangle with four equal sides and four right angles 
  2. A four-sided regular polygon
  3. You can compute the area of a square if you know the length of its sides
Program :
#include<stdio.h>
#include<conio.h>
void main()
{
int side,area;
clrscr();  // Clear Screen

printf("nEnter the Length of Side : ");
scanf("%d",&side);

area = side * side ;

printf("nArea of Square : %d",area);
getch();
}
Output :
Enter the Length of Side : 5
Area of Square : 25

C Program to Calculate Area of Rectangle

C Program for Beginners : Area of Rectangle

Shape : Rectangle
formula : area = l * b
Definition
  1. A plane figure with 4 sides and 4 right angles and having Equal Opposite Sides
  2. Adjucent sides makes an angle of 90 degree
  3. You can compute the area of a Rectangle if you know its length and breadth
Program :
#include<stdio.h>
#include<conio.h>

void main()
{
int length,breadth,side;
clrscr();  // Clear Screen

printf("nEnter the Length of Rectangle : ");
scanf("%d",&length);

printf("nEnter the Breadth of Rectangle : ");
scanf("%d",&breadth);

area = length * breadth;

printf("nArea of Rectangle : %d",area);
getch();
}
 
Output :
Enter the Length of Rectangle  : 5
Enter the Breadth of Rectangle : 4
Area of Rectangle : 20

C Program to Calculate Area of Circle

C Program for Beginners : Area of Circle

Shape : Circle
   Formula : Π * r * r
 Definition :
  1. Ellipse in which the two axes are of equal length
  2. Plane curve generated by one point moving at a constant distance from a fixed point
  3. You can compute the area of a Circle if you know its radius.
Program :
#include<stdio.h>
#include<conio.h>
void main()
{
float radius,area;
clrscr();  // Clear Screen

printf("nEnter the radius of Circle : ");
scanf("%d",&radius);

area = 3.14 * radius * radius;

printf("nArea of Circle : %f",area);
getch();
}
Output :
Enter the radius of Circle : 2.0
Area of Circle : 6.14

C Program to Calculate Area of Right angle Triangle

C Program for Beginners : Area of Right Angled Triangle

Right angle Triangle
 Definition :
  1. Triangle having one angle of measure 90 degree is called Right angle Triangle.
  2. Sides of Triangle are : base , height , hypotenuse.
  3. You can compute the area of a Tr. if you know its any two sides.

Program :
#include<stdio.h>
#include<conio.h>
void main()
{
int base,height;
float area;
clrscr();  // Clear Screen

printf("nEnter the base of Right Angle Triangle : ");
scanf("%d",&base);

printf("nEnter the height of Right Angle Triangle : ");
scanf("%d",&height);

area = 0.5 * radius * radius;

printf("nArea of Right Angle Triangle : %f",area);
getch();
}
Output :
Enter the base of Right Angle Triangle   : 4
Enter the height of Right Angle Triangle : 8
Area of Right Angle Triangle : 16.0

C Program to Calculate Area of Equilatral Triangle

C Program for Beginners : Area of Square

#include<stdio.h>
#include<math.h>

int main()
{
int side;
float area,r_4;

r_4 = sqrt(3) / 4 ;

printf("nEnter the Length of Side : ");
scanf("%d",&side);

area = r_4 * side * side ;

printf("nArea of Equilateral Triangle : %f",area);
return(0);
}
Output :
Enter the Length of Side : 5
Area of Equilateral Triangle : 10.82

Properties of Equilateral Triangle :

  1. Equilateral triangle is a triangle in which all three sides are equal .
  2. All angles are of measure 60 degree
  3. A three-sided regular polygon

Formula to Calculate Area of Equilateral Triangle :


Explanation of Program :

First of all we have to find the value of Root 3 / 2. So we have used following statement to compute the value.
r_4 = sqrt(3) / 4 ;
Now after computing the value of the Root 3 by 2 we have multiplied it by Square of the side.
area = r_4 * side * side ;