Listing 2: A quiet change due to // comments

#include <stdio.h>

int main()
{
  int i = 1 //* comment */ 2
  ;
  printf("%d\n", i);
  return 0;
}