2024-11-11 15:19:36 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
2024-11-11 23:50:38 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
2024-11-12 17:07:06 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
int main(int argc, const char **argv) {
|
|
|
|
int x = 1234;
|
|
|
|
printf("Hello %d!!!\n", x);
|
2024-11-11 15:19:36 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|