With your team, convert the input program (below) into a symbol table. The input program (below) is defined by our C-like programming programming language. Minimally, attributes in the symbol table should include:
Since this is an in-class exercise, please ask me questions if you need any help.
char announcement[2048]; procedure main (void) { char name[100]; name = "Robert\0"; announcement = "You've got mail!\0"; display_announcement (name); } function bool empty_string (char string[4096]) { int i; int num_bytes_before_null; bool found_null; found_null = FALSE; num_bytes_before_null = 0; i = 0; while ((i < 4096) && (!found_null)) { if (string[i] == '\0') { found_null = TRUE; } else { num_bytes_before_null = num_bytes_before_null + 1; } i = i + 1; } return (num_bytes_before_null == 0); } procedure display_announcement (char name[512]) { if (!empty_string(name)) { printf ("Welcome, %s\n\n", name); if (!empty_string(announcement)) { printf ("%s\n", announcement); } } }
Since this is a group assignment, please write the names of each member of the team student on your assignment submission along with "Exercise 4a: Creating a Symbol Table".