1 #include <stdio.h> 2 3 int main (void) 4 { 5 unsigned char a, b; 6 7 a = 0b11001010; 8 b = 0b10100101; 9 10 printf("a = %o\nb = %o\n", a, b); 11 12 13 return 0; 14 }
9511_workbooksolved exercises from algorithms & programming I (9511) prof. Cardozo |