#include #include #include // COMPILE WITH: // cc -std=c11 -Wall -Werror showmode showmode.c // RUN WITH: // ./showmode [pathname1 pathname2 .....] void showmode(char *desc, unsigned int x) { #define NBITS ((sizeof x) * NBBY) static char bits[NBITS+1]; char *b = bits; for(int n=NBITS-1 ; n>=0 ; --n) { *b = ((x & (1<