Programming Hint

#include <stdio.h>

typedef struct llist{

main()
{

}

Makefile Hint

#please "man make" to learn more about the make command.
#try to type "make" or "make homework1a" to see the trick,
#after you create the Makefile in your working directory.
#assume you have file homework1[ab].cpp, necessary.cpp

CC=gcc
CFLAGS=-g -Wall

all:

homework1a: homework1a.cpp necessary.cpp
homework1b: homework1b.cpp necessary.cpp