次の配列があります。
int A[] = {0,1,1,1,1, 1,0,1,0,0, 0,1,1,1,1};
int B[] = {1,1,1,1,1, 1,0,1,0,1, 0,1,0,1,0};
int C[] = {0,1,1,1,0, 1,0,0,0,1, 1,0,0,0,1};
//etc... for all letters of the alphabet
そして、5x3 LED マトリックスに文字を出力する関数:
void printLetter(int letter[])
私は文字列を持っています:
char word[] = "STACKOVERFLOW";
文字列の各文字を printLetter 関数に渡したいと思います。
私は試した:
int n = sizeof(word);
for (int i = 0; i < n-1; i++) {
printLetter(word[i]);
}
しかし、次のエラーが表示されます: 「char」から「int*」への変換が無効です
私は何をすべきですか?
ありがとう!!