Listing 1: A quiet change due to // comments

#include <stdio.h>

#define STR(s) #s

int main()
{
  printf("%s\n", STR(a//
  ));
  return 0;
}