Difference between Int16, Int32 and Int64.

Posted by Questpond under C# category on | Points: 350 | Views : 1747
This C# video will differentiate between int16, int32 & int64 data types.



Get Questpond videos on discounted price from ITFunda.com.

Comments or Responses

Posted by: Ishan7 on: 2/1/2021
Each type of integer has a different range of storage capacity

Int16 -- (-32,768 to +32,767)

Int32 -- (-2,147,483,648 to +2,147,483,647)

Int64 -- (-9,223,372,036,854,775,808 to +9,223,372,036,854,775,807)

Login to post response