mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-27 22:54:51 +08:00
6de9cd9a88
From-SVN: r81764
13 lines
159 B
C++
13 lines
159 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
char zoo [10];
|
|
|
|
int main ()
|
|
{
|
|
int i = strlen ("eight") + strlen ("one");
|
|
zoo[i] = 'a';
|
|
return 0;
|
|
}
|