Ia m getting the following error while running my SIMPLE java program [ I guess!!! ], please HELP as this will lead me to make a bigger module[ mean that i may ask more question]
**Error**
C:\Java prog>javac Testt.java
Testt.java:10: cannot find symbol
symbol : variable charAt
location: class java.lang.String
kk=k.charAt[i];
^
**The program**
class Testt
{
public static void main(String args[])
{
String k="my name is bhola ram";
for(int i=0;i<10;i++)
{
System.out.println(k.charAt[i]);
}
}
}
Please help........ASAP.......