Computer Science, asked by sravankumarachi7260, 10 months ago

Wap to insert and delete an element in symbol table in c

Answers

Answered by niishaa
27

Answer:

Symbol table in C

  1. #include<stdio.h>
  2. #include<conio.h>
  3. #include<alloc.h>
  4. #include<string.h>
  5. #include<stdlib.h>
  6. #define NULL 0.
  7. int size=0;
  8. void Insert();
Similar questions