aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend/2003-05-14-initialize-string.c
blob: 543b13c4b51d326afd16c06e8549ab96eaf509c5 (plain)
1
2
3
4
5
6

int main() {
  char title[] = "foo and stuff\n";
  printf("%s", title);
  return 0;
}