Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. struct ErrorCheck {
  2. int returnValue;
  3. struct Nodes * list;
  4. };
  5.  
  6. struct Nodes {
  7. char * name;
  8. int grade;
  9. struct Nodes * next;
  10. };
  11.  
  12. void buildList() {
  13. struct ErrorCheck * newStruct;
  14. newStruct = malloc(sizeof(struct ErrorCheck));
  15. newStruct->list = malloc(sizeof(struct Nodes));
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement