abh - HTMLify profile

abh's Profile Picture

abh

509 Files

102923 Views

Latest files of /abh/learning/c/BPPL/Phase-1/bitwise

bitwise.c abh/learning/c/BPPL/Phase-1/bitwise/bitwise.c
13 Views
0 Comments
#include <stdio.h>

void print_bits(int num) {
printf("number bits: %b\n", num);
}

void print(char *string) {
printf("%s\n", string);