---
title: "difference between int and int32"  
description: "difference between int and int32"  
author: "Anonymous User"  
published: 2018-06-01  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/23418/difference-between-int-and-int32  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# difference between int and int32

Int32 and int are synonymous,both of them allow us to create a 32 bit integer.int is shorthand notation(alias) for int32.When declaring an integer in a c# program most of us prefer using int over int32.

## Answers

### Answer by Anonymous User

Int32 and int are synonymous,both of them allow us to create a 32 bit integer.int is shorthand notation(alias) for int32.When declaring an integer in a c# program most of us prefer using int over int32.


---

Original Source: https://www.mindstick.com/interview/23418/difference-between-int-and-int32

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
