[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

outputting bits in C



main()
{
	int i=4958;
	char arr[17];
	int j;

	j=15;
	arr[16]='\0';
	while (i) {
		arr[j]='0'+(i&1);
		i>>=1;
		j--;
	}
	printf("%s\n", arr);
}







Why do you want this page removed?