Technicalsymposium.com-Free Email Alerts


Enter Your Email :

Important Note:Login & Check Your Email Inbox and Activate Confirmation Link

Subscribe & Get All Fresher Jobs Information & Study Materials PDF and Projects- Free Download

C Programming Books PDF


C Aptitude Question Papers


Datastructure Programming in C



C Programming & Tech Interview Materials PDF- Free Download

C Program For BINARY TO DECIMAL

void main()

{

int s=0,z=0,n,t;

clrscr();

printf("Enter the n value");

scanf("%d",&n);

while(n>0)

{

t=n%10;

s=s+(t*pow(2,z++));

printf("s=%d\n",s);

n=n/10;

}

printf("given number is=%d",s);

getch();

}

Download All C Programming & Study Materials PDF