Self Referential Data Structure in C - create a singly linked list http://www.how2lab.com/programming/c/link-list1.php 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 #include <stdio.h> typedefstructst { intdata; structst* s; } alias; alias *createNode() { alias ...