Created
January 26, 2021 15:17
-
-
Save PrateekKumarSingh/155c34e9bcaa893b8be9bebbe131f2a6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int x = 5; | |
// value type variables copies the value | |
int y = x; | |
// changing the value of 'y' doesn't change the value of 'x' | |
y = 3; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment