-
Compiler Design : Shift Reducing Parsing in C

We know that Shift Reduce Parsing is an important concept in Language Processors i.e Compiler Design. When we give input string id*id+id or any of these types of strings, it gets parsed ( Shift or Reduce action )in accordance with the production rules. In the given program below , the grammar used is E->E+EE->E*EE->(E)E->id and…
-
Dev-C++ “g++.exe has stopped working” – Fix Error in Windows 8/8.1/10.

If you are getting the error that g++.exe has stopped working , you might be using Bloodshed Dev C++ in Windows 8 /8.1/10 Operating System. Whatever it may be I’ve faced this problem several times during executing my programs in the Dev C++ compiler . It generally happens when you install Dev C++ and try…