/*DEVELOP A PROGRAM TO READ A POSITIVE INTEGER AND PRINT ITS BINARY EQUIVALENT*/
#include<stdio.h>
main()
{
    int tenpow=1,num,i,bin=0;
    printf("Enter a decimal number\n");
    scanf("%d",&num);
  
The content has been moved to our permanent website: www.programminghelp.in.
You will be redirected shortly.

Saturday, May 14, 2011

binary,equivalent,deciaml,number,c,programm,lab,record,first semester,bca

/*DEVELOP A PROGRAM TO READ A POSITIVE INTEGER AND PRINT ITS BINARY EQUIVALENT*/
#include<stdio.h>
main()
{
    int tenpow=1,num,i,bin=0;
    printf("Enter a decimal number\n");
    scanf("%d",&num);
  
The content has been moved to our permanent website: www.programminghelp.in.
You will be redirected shortly.