Skip to main content

Binary addition


LIST OF PROGRAMS

#include<stdio.h>
#include<conio.h>
void  main()
{
int a[100],a2[100],s[100],i=0,sum,carry=0,tmp=0,size;
clrscr();
printf("ENTER SIZE OF ARRAY ");
scanf("%d",&size);

printf("ENTER 1st NUMBER\n");
for(i=0;i<size;i++)
{ fflush(stdin);
scanf("%d",&a[i]);
if(a[i]<0||a[i]>1)
{
printf("WRONG INPUT");
}
}
printf("\nENTER 2nd NUBER");
for(i=0;i<size;i++)
{
scanf("%d",&a2[i]);
if(a[i]<0||a[i]>1)
{
printf("WRONG INPUT");
}
}


printf("\n 1st number entered is ");
for(i=0;i<size;i++)
printf("%d",a[i]);

printf("\n2nd number entered is ");
for(i=0;i<size;i++)
printf("%d",a2[i]);

for(i=size-1;i>=0;i--)
{ //main logic of the program
tmp=a[i]+a2[i]+carry;
if(tmp==0)
 {
sum=0;
carry=0;
 }
else if(tmp==1)
{
sum=1;
carry=0;
}
else if(tmp==2)
{
sum=0;
carry=1;
}
else
{
sum=1;
carry=1;
}
s[i+1]=sum;
}

s[0]=carry; //VERY IMPORTANT LINE

printf("\nSum Of Both The Numbers");
for(i=0;i<=size;i++)
printf("%d",s[i]);

getch();

}//click on pic to enlarge it


Comments

Popular posts from this blog

PROGRAM TO PRINT COLOURS OF RAINBOW ACCORDING TO THE NO. INPUTTED BY THE USER

#include,stdio.h> #include<conio.h> void main() { int ch; printf("INPUT A NUMBER\n"); scanf("%d",&ch); switch(ch) { case 6: printf("Red"); break; case 5 : printf(" Orange"); break; case 4 : printf(" Yellow"); break; case 3 : printf(" Green"); break; case 2 : printf(" Blue"); break; case 1 : printf(" Indigo"); break; case 0 : printf(" Violet"); break; default : ("wrong input "); } } SIMPLE PROGRAMS FIND TYPE OF THE TRIANGLE TEMPERATURE CONVERSION COMMISSION OF A SALESMAN PRINT NUMBERS IN DESCENDING ORDER BIGGEST NUMBER AMONG THREE NUMBERS CALCULATE DIVISION A YEAR IS LEAP OR NOT A NUMBER IS ODD OR EVEN PRINT THE SQUARE ROOT ELSE PRINT N TO THE POWER 5 PRINT A NEW NUMBER BY ADDING 1 TO EACH DIGIT OF THE NUMBER PRINT THE NO. OF CURRENCY NOTES ACCORDING TO THE AMOUNT ENTERED DATA STRUCTURES ENTER DETAILS OF A STUDENT ENTER DETAILS OF A ST...

Java program to take 10 cities name in an array and display which starts with consonant

import java.io.*; import java.lang.*; public class Main {   public static void main (String[]args)   {     for (int i = 0; i < args.length; i++)       {             switch (args[i].charAt (0))               {               case 'a':               case 'e':               case 'i':               case 'o':               case 'u':               case 'A':               case 'E':               case 'I':               case 'O':               case 'U':                break; ...

String operations in c sharp # using Microsoft visual studio 2010

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication3 {     class Program     {         static void Main(string[] args)         {             string s,find;             int l,i=0;             s = Console.ReadLine();             string.Concat(s);             l=s.Length;             Console.WriteLine(s);             Console.WriteLine("length\t"+l );                         Console.WriteLine("first and last character  " + s[0]+"  "+s[l-1] );             for (i = 0; i < l; i++)             {      ...