Monthly Archive: December 2014

0

String Concatenation in Java using TCP

This is the Java Program to Concatenate two strings using TCP,the client sends two strings to the server where these two strings are concatenated and sent back to the client Client Program: ChatClient.java Server...

4

YACC Program to Implement Symbol Table [Compiler]

This is the symbol table implementation in yacc using regular expressions,it checks for redeclaration of variables and multiple declarations of variables Lex Program: YACC Program: %{ #include #include int err_no=0,fl=0,i=0,j=0,type[100]; char symbol[100][100],temp[100]; %} %token...