11 lines
143 B
C
11 lines
143 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main()
|
|
{
|
|
printf("Hello world! P2.1\n");
|
|
|
|
printf("Hello world! P2.1 v2\n");
|
|
return 0;
|
|
}
|