编译和执行如下c语言代码,系统将会输出什么?
#include <stdio.h>
int main() {
char c = '0';
printf("%d %d", sizeof(c), sizeof(char));
return 0;
} 




