mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-12 14:00:45 +08:00
10 lines
107 B
C
10 lines
107 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
int main ()
|
||
|
{
|
||
|
|
||
|
strlen("123456789");
|
||
|
return 0;
|
||
|
}
|