0
What are local variables? Please help..
3 Réponses
+ 2
a block of code.. is the code that occurs between 2 brackets... such as this pseudocode
public void calcNumOfSeeds (int cSeed)
{
int x = 0;
do something;
do something else;
do one more thing;
etc...;
}
+ 1
a variable that is used within a block of code... but can't be accessed outside that block of code
0
laura what is the block?