--- /dev/null
+TARGET = exo3
+LIBS =
+CC = gcc
+# Enforce C11 ISO standard for now
+CFLAGS = -std=c11 -g -Wall
+LDFLAGS = -g -Wall
+
+.PHONY: default all clean
+
+default: $(TARGET)
+all: default
+
+OBJECTS = $(patsubst %.c, %.o, $(wildcard *.c))
+HEADERS = $(wildcard *.h)
+
+%.o: %.c $(HEADERS)
+ $(CC) $(CFLAGS) -c $< -o $@
+
+.PRECIOUS: $(TARGET) $(OBJECTS)
+
+$(TARGET): $(OBJECTS)
+ $(CC) $(OBJECTS) $(LDFLAGS) $(LIBS) -o $@
+
+clean:
+ -rm -f $(TARGET) $(OBJECTS)
+
+disassemble: $(TARGET)
+ objdump -d $< | less
+
+symbols: $(TARGET)
+ objdump -t $< | sort | less
--- /dev/null
+#include <stdio.h>
+#include <stdlib.h>
+
+/** Display a prompt to the user then wait for an integer input. */
+int promptValue(const char* prompt) {
+ printf("%s:\n", prompt);
+ int result;
+ scanf("%d", &result);
+ return result;
+}
+
+/** Linked list of int */
+typedef struct link_s {
+ int value;
+ struct link_s* next;
+} link_t;
+
+link_t* list_new(int value) {
+ link_t* link_t_new;
+ link_t_new = malloc(sizeof(link_t));
+ link_t_new->value = value;
+ link_t_new->next = NULL;
+ return link_t_new;
+}
+
+void list_append(link_t* head, int value) {
+
+ while (head->next != NULL) {
+ head = head->next;
+ }
+ head->next = list_new(value);
+}
+
+unsigned list_count(link_t* head) {
+ // And if head is not defined?
+ int count = 1;
+
+ while (head->next != NULL) {
+ ++count;
+ head = head->next;
+ }
+ return count;
+}
+
+int list_get(link_t* head, unsigned index) {
+
+ if (index < list_count(head)) {
+ for (int i = 0; i < index; i++) {
+ head = head->next;
+ }
+ return head->value;
+ } else {
+ return -1;
+ }
+}
+
+void list_clear(link_t* link) {
+ free(link);
+}
+
+int main() {
+ link_t* head = list_new(1);
+ printf("Longueur de la liste: %d\n", list_count(head));
+ list_append(head, 2);
+ list_append(head, 3);
+ list_append(head, 4);
+ printf("Longueur de la liste: %d\n", list_count(head));
+ printf("Valeur a index %d: %d\n", 2, list_get(head, 2));
+ printf("Valeur a index %d: %d\n", 3, list_get(head, 3));
+ printf("Valeur a index %d: %d\n", 4, list_get(head, 4));
+ list_clear(head);
+
+ return 0;
+}