Answers for "c# declaration definition"

C#
-1

c# declaration definition

Declaration means that variable is only declared and memory is allocated, but no value is set.
However, definition means the variables has been initialized.
  
int [] n // declaring
int n= new int[10]; // initializing
Posted by: Guest on January-07-2021

C# Answers by Framework

Browse Popular Code Answers by Language