#include <LiquidCrystal.h>
LiquidCrystal lcd(13,12,11,10,9,8);
char str[] = "Bismillah Hirrahman Nirraheem" ;
void setup()
{
// put your setup code here, to run once:
lcd.begin(16,2);
for(int x=0; x<strlen(str);x++)
{
lcd.print(str[x]);
if(x>14)
lcd.setCursor(x-15,1);
delay(100);
}
}
void loop()
{
}