Data Types C++ Tutorial

#include  
using namespace std; 
 
void show_binary(unsigned int u);
 
int main() 

  show_binary(89);
 
  return 0; 
}
void show_binary(unsigned int u) 

  int t; 
 
  for(t=128; t>0; t = t/2) 
    if(u & t) cout << "1 "; 
    else cout << "0 "; 
 
  cout << "\n"; 
}
0 1 0 1 1 0 0 1