Daily Archives: December 25, 2017

PLC : SESSION 3 (Names, Bindings, and Scopes)

Names A name is a string of characters used to identify some entity in a program. Fortran 95+ allows up to 31 characters in its names. C99 has no length limitation on its internal names, but only the first 63 … Continue reading

Posted in Programming Language Concept | Leave a comment

PLC : SESSION 2 (Describing Syntax and Semantics)

What is Syntax and Semantics? Syntax: the form of the expressions, statements, and program units Semantics: the meaning of the expressions, statements, and program units   Ex:   while (<Boolean_expr>)<statement>          * The semantics of this statement form is that when … Continue reading

Posted in Programming Language Concept | Leave a comment