I have an array named \"bob\" which contains values.
String[] bob = { \"this\", \"is\", \"a\", \"really\", \"silly\", \"list\" };
How can I kno
above code does not work for me. primitive types not allowed i guess.
got to do it manually:
char[] charlist = {'a','b','c','d'} boolean arraycontains = false; char tester = 'c'; for (int y=0;y
:)