9 lines
216 B
C
9 lines
216 B
C
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf("Concrete contains gravel and cement.\n");
|
|
printf("混凝土含有砾石和水泥。\n");
|
|
printf("A .c is used to end a C program filename.\n");
|
|
return 0;
|
|
} |