Created
June 21, 2020 12:44
-
-
Save vivekanandRdhakane/d72b8eb9351bf41c039fc0bc27c2f799 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void print_string(String string,byte x,byte y) | |
{ | |
for(int i=0; i< string.length();i++) | |
{ | |
char ch = string[i]; | |
byte x_cord = x+ i* Char_Horizontal_Columns_Required; | |
print_char(ch,x_cord,y); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment