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 DECIMAL TO BINARY.

void main()

{

int n,z=0,i,a[20];

clrscr();

printf("Enter the n value");

scanf("%d",&n);

while(n>0)

{

a[z]=n%2;

z++;

n=n/2;

}

for(i=z;i>=0;i--)

{

printf("%d",a[i]);

}

getch();

}

Download All C Programming & Study Materials PDF