Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. # include < stdio.h>
  2. # include < conio.h>
  3. # include < dos.h>
  4.  
  5. void main()
  6. {
  7. char *name[8]={{"Danny"},{"Johns"},{"Kim"},{"James"},{"Luci"},{"Merry"},{"Kiara"}};
  8. for(;;)
  9. {
  10. for(int i=0;i<7;i++)
  11. {
  12. printf("%s",name[i]);
  13. delay(1500);
  14. clrscr();
  15. }
  16. }
  17. }
  18.  
  19. **** **Lcd Pins** ****
  20. // initialize the library with the numbers of the interface pins
  21. LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
  22. ***************
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement