I just found this on the web. John Balgenorth
Code for Program to convert binary to hexadecimal in C Programming #include<stdio.h> #include<conio.h> void main() { int j=1,i=0; int k,num[100],n,sum=0; clrscr(); printf( "\n PLEASE ENTER VALUE N:" ); scanf( "%d" ,&n); printf( "\n PLEASE ENTER IN THE BINARY (0 - 1): " ); for (k=0;k<n;k++) { printf( "\n\tnum[%d]= " ,k+1); scanf( "%d" ,&num[k]); if (num[k]>1) { printf( "\n YOU ARE NOT ENTER BINARY NUMBER" ); goto end; } } for (k=n-1;k>=0;k--) { sum=sum+(num[k]*j); j=j*16; } printf( "\n BINARY TO HEXADECIMAL CONVERSION IS " ); printf( "%d" ,sum); end: getch(); } _______________________________________________ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode