- 1

what is declaration?

23rd Sep 2016, 3:52 PM
sajin
sajin - avatar
3 Réponses
+ 1
In JavaScript you 'Declare' a variable with the 'var' keyword so: var random = "number";
23rd Sep 2016, 3:57 PM
Baillie O'grady
Baillie O'grady - avatar
+ 1
declaring a variable to class like int a: here a is declared for int class(data type)
24th Sep 2016, 2:57 PM
rupe honey
rupe honey - avatar
+ 1
Declaration of array "Data type" "array name" "size" Int array[10]; You can also gives the value like Int array[10] = {1,2,3,4,5,6,7,8,9,10};
24th Sep 2016, 7:35 PM
Has Xan
Has Xan - avatar