定义格式的变量定义8字节的字串a,要求左对齐,不足时右补0。定义4字节的整形数b。已知a = test,b = 3怎么定义格式化的a b呢?[解决办法]
char a[8] = "test";int b = 3;