2023-01-06 13:31:14 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2023-01-07 00:21:08 +01:00
|
|
|
#include <time.h>
|
2023-01-06 13:31:14 +01:00
|
|
|
|
2023-01-06 19:40:25 +01:00
|
|
|
void bye()
|
|
|
|
{
|
2023-01-07 01:49:26 +01:00
|
|
|
printf("byeee!\n");
|
2023-01-06 19:40:25 +01:00
|
|
|
}
|
|
|
|
|
2023-01-06 13:31:14 +01:00
|
|
|
int main()
|
|
|
|
{
|
2023-01-06 19:40:25 +01:00
|
|
|
atexit(bye);
|
2023-02-27 16:23:51 +01:00
|
|
|
printf("Welcome to %s from userspace!\n", "Luna");
|
2023-01-06 20:15:43 +01:00
|
|
|
|
2023-01-13 20:00:20 +01:00
|
|
|
char* address = (char*)malloc(1);
|
2023-01-11 23:01:47 +01:00
|
|
|
printf("address: %p\n", address);
|
|
|
|
printf("memory at address: %c\n", *address);
|
|
|
|
*address = 'e';
|
|
|
|
printf("memory at address: %c\n", *address);
|
|
|
|
|
2023-01-13 20:00:20 +01:00
|
|
|
free(address);
|
2023-01-13 21:06:27 +01:00
|
|
|
|
|
|
|
time_t now = time(NULL);
|
|
|
|
printf("date: %s", ctime(&now));
|
2023-01-06 13:31:14 +01:00
|
|
|
}
|