C++程序  |  11行  |  124 B

#include <stdio.h>

extern void common(void);

int main(void)
{
  printf("hello from prog2.c\n");
  common();
  return 0;
}