Posts by Fernando L. • 63 points
3 posts
-
2
votes1
answer742
viewsQ: Parser misidentifying tokens (Flex and Bison)
I am implementing a compiler based on the Tiger language proposed by Andrew Appel’s book "Modern Compiler Implementation in C". Link: https://www.cs.princeton.edu/~Appel/Modern/c/project.html I’m…
-
3
votes1
answer294
viewsQ: C socket for Linux (how to pass a struct?)
I have a client/server application and need to transfer a struct to the server, but this way is not working: typedef struct{ int pontos; int vidas; int flagReiniciar; int flagAcabar; int…
-
1
votes1
answer194
viewsQ: Change script variable value via Java application
I created a script where inside this script there’s a bond like while. The condition for that while is escolha != 1. Everything works ok, but in the middle of this while i run a Java application…