void setup() {
Serial.begin(9600);
String name="Anushka";
for(int i=0;i<=15;i++){
int j=0;
String n="";
while(j<=i){
n+=name[6-j];
j++;
}
Serial.println(n);
delay(100);
}
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}