answersLogoWhite

0

Pascal has 4 primitive data types: integer; boolean; char and; real. These 4 provide the basic building blocks for more complex types.

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

What is the Pascal programming language data structure?

In Pascal, data structures are implemented with recorddata types. A record is synonymous with the structdata type in C, or the class data type in C++.


An enumerated data type is another user defined type which provide a way for attaching names to numbers thereby increase clearity of the code?

Yes. Enumerated types are constant values that are grouped under a common type.


Do the elements of an enumerated data type have to be specified explicitly?

yes.


In programming data read by programming is called?

Pascal language is used to read the programming data.


What has the author Reinhold Friedrich Hille written?

Reinhold Friedrich Hille has written: 'Data Abstraction and Program Development Using Modula Two' 'Data abstraction and program development using Pascal' -- subject(s): Abstract data types (Computer science), Computer programming


What does the term enum refer to in computer programming?

The term 'enum' is short for 'enumerated type'. An enumerated type is a data type containing a set of values called elements. They can also be called members or enumerators.


What has the author Guy J Hale written?

Guy J. Hale has written: 'Applied data structures using Pascal' -- subject(s): Data structures (Computer science), Pascal (Computer program language)


Is built-in data-type are abstract data-types in java?

All built-in data types are not abstract data types.


What is datatype.Define various types of data types?

In c language data types are used to specify the tye of data.for ex:int a;It means "a" is a variable of type integer.There are two types of data types in c.They areprimary data typessecondary data typesprimary data types are the built in data types and secondary data types are the user defined data types.eg for primary data types are int,float,char,long,double..and for secondary are arrays,structures,pointers,unions..


What in enumerated powers?

Enumerated powers


What has the author Laurence V Atkinson written?

Laurence V. Atkinson has written: 'Programming in Pascal' 'A students guide to programming in Pascal' -- subject(s): Pascal (Computer program language) 'An introduction to numerical methods with PASCAL' -- subject(s): Numerical analysis, Data processing


Why subrange does not support real data type in pascal?

SubRange data types take a bit of getting used to, although they are simple in principle. With the standard ordinal (integer and character) types you are allowed a finite range of values. For example, for thebyte type, this is 0 to 255. SubRanges allow you to define your own type with a reduced range of values.