SLL array indexed

Run Settings
LanguageC
Language Version
Run Command
#include <stdio.h> int main(void) { printf("SLLi\n"); return 0; } struct Node { void *data; int next; // struct Node *next; int prev; // struct Node *prev; }; struct List { int head; // struct Node *head; int tail; // struct Node *tail; size_t size; // num of nodes in array int storage [10]; };
Editor Settings
Theme
Key bindings
Full width
Lines