#include int a = 23; int b; void print_b(void) { b = 10; printf("b=%d\n", b); } int main(void) { printf("a=%d\n", a); print_b(); }