連続する文字列リテラル

#include <stdio.h>

int main() {
  printf("hello" "&" "world\n"); // => 'hello&world'
}

gccではビルドできた。
どこかに仕様が書いてなかったかな…。