Known Data Types

A memory type depends on what we want to store in our PC's memory (called RAM).

As MEHRANN is a special purpose language, it supports what it needs. Hence the following table:

Type

Usage

Example

Declaration

Integer Integer numbers
Coverage: From: -2147483648
                 To:    +2147483647
4500 Integer i;
Float Floating point numbers:
Coverage: From: -10E38
                 To:    +10E38
748.258715893 Float f;
String Any string of characters "My name is Mehran." String s;
File Creating & accessing to Files. "C:\Data.txt" File f;

 

Matrix A two-dimensional array of numbers.   Matrix mat;

 

FF_NeuralNetwork Back-propagation Neural Networks. N/A FF_NeuralNetwork NN;

 

LogicalNeuralNetwork Logical Neural Networks. N/A LogicalNeuralNetwork LN;