Answers for "what is declare variable"

0

what is declaration of variable

declaration of variable just means defining that a variable of given data type is needed and hence compiler creates a memory block for such a variable based on its data type. 
In Java, int n;
Posted by: Guest on March-25-2021

Browse Popular Code Answers by Language