2023-01-06 12:31:14 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2023-01-06 23:21:08 +00:00
|
|
|
#include <time.h>
|
2023-01-06 12:31:14 +00:00
|
|
|
|
2023-01-06 18:40:25 +00:00
|
|
|
void bye()
|
|
|
|
{
|
2023-01-07 00:49:26 +00:00
|
|
|
printf("byeee!\n");
|
2023-01-06 18:40:25 +00:00
|
|
|
}
|
|
|
|
|
2023-01-06 12:31:14 +00:00
|
|
|
int main()
|
|
|
|
{
|
2023-01-06 18:40:25 +00:00
|
|
|
atexit(bye);
|
2023-01-07 00:49:26 +00:00
|
|
|
printf("Welcome to %s!\n", "Luna");
|
2023-01-06 19:15:43 +00:00
|
|
|
|
2023-01-13 19:00:20 +00:00
|
|
|
char* address = (char*)malloc(1);
|
2023-01-11 22:01:47 +00: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 19:00:20 +00:00
|
|
|
free(address);
|
2023-01-13 20:06:27 +00:00
|
|
|
|
|
|
|
time_t now = time(NULL);
|
|
|
|
printf("date: %s", ctime(&now));
|
2023-01-06 12:31:14 +00:00
|
|
|
}
|