C++程序  |  11行  |  107 B

#include <stdio.h>

int main ()
{
  int x;

  printf ("x = %d\n", x==0xCAFEBABE ? 99 : 88);

  return 0;
}