Pascal(programming language)

 Pascal is a procedural programming language that supports structured programming and data structures to encourage good programming practices. Pascal was originally developed in 1970 by Niklaus Wirth and is named after the famous French mathematician Blaise Pascal.




While Pascal is a reliable and efficient programming language, it is mainly used to teach programming techniques. In fact, it is the first language that many programmers learn. There are commercial versions of Pascal that are used, but in general, most developers favor Java, C#, C, C++, etc.

Pascal uses control structures with reserved words which include if, then, else, while, etc. It also supports data structures and abstractions like records, pointers, type definitions, sets and enumeration. Similar to any other object-oriented programming language, Pascal also has special program structures and control statements. They start with the keyword "program" followed by the main block holding the begin and end statements. Data types permit a range of values a variable can hold and are capable of storing and defining a set of operations that can be performed on the data type. Predefined data types supported by Pascal are integer, real, char and Boolean. Pascal has certain unique types like the set type, and user-defined types are defined from other types using the type declaration.

Comments

Popular Posts