0
If statement
if($age _18) { _"Welcome"; } How should I answer the question?
1 Réponse
+ 1
hi,
if statement gets executed with non zero value inside the if condition.
ex:
age=20
if(age)
{
}
age is not equal to zero so if block is executed.
if($age _18) { _"Welcome"; } How should I answer the question?