MIPI_AdvancedC_FRTK/Lect7/08.c
2024-11-14 08:45:50 +03:00

13 lines
144 B
C

#include <stdint.h>
#include <stdio.h>
typedef struct list {
uint32_t id;
struct list *next;
} list;
int main(void)
{
return 0;
}