Author: iPoster

1

CSMA Implementation in Java

This is the CSMA Implementation in java Carrier sense multiple access (CSMA) is a probabilistic media access control (MAC) protocol in which a node verifies the absence of other traffic before transmitting on a...

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...