14 lines
226 B
C
14 lines
226 B
C
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
#include <fcntl.h>
|
|
|
|
int main(int argc, const char **argv) {
|
|
int x = 1234;
|
|
printf("Hello %d!!!\n", x);
|
|
|
|
return 0;
|
|
}
|