How to count number of bits in the variable GH that have value of 1 and assigns the results to the variable CT using while loop ?
 int main(void)
 {
      unsigned int GT = 0x12345678;
      unsigned int CT = 0;
      < The solution >
      all_done: return 0;
 }
 
    