0
What is meaning this statement?
if ((c[i] != ' ') && (c[i]!= '\t'))
3 Respostas
+ 3
Ok, means:
If item in probably array (could be object too) 'c' with index 'i' is not 'tab' or 'space' it evaluates as true. Hope it helps!
+ 1
You're welcome
0
Thank u Maneren