I need help. I have to write some code converting integer to binary using bitwise and masks. I have this so far but it doesn't build.
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
short int mask = 8;
short int inumber;
short int itemp = 0;
printf("Enter a number");
scanf("%d" ,& inumber);
for(mask =8;...