fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a = 12;
  6. int rem = 0;
  7. while(a > 0)
  8. {
  9. rem=a%2;
  10. printf("%d",rem, "\n");
  11. a/=2;
  12. }
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 4568KB
stdin
Standard input is empty
stdout
0011