vivasuzi
Programmer
- Jun 14, 2002
- 183
I have an array -->
char TaskID = array['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'];
I think there's a way so I can write it on multiple lines so that my code is easier to read -->
char TaskId = array['A','B','C','D','E','F','G','H','I','J','K'
'L','M','N','O','P','Q','R','S','T','U','V'
'W','X','Y','Z']
but how do you do this? The array is gonna be 70 chars and I don't want it to be one long line of code. Thanx *Suzanne*
char TaskID = array['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'];
I think there's a way so I can write it on multiple lines so that my code is easier to read -->
char TaskId = array['A','B','C','D','E','F','G','H','I','J','K'
'L','M','N','O','P','Q','R','S','T','U','V'
'W','X','Y','Z']
but how do you do this? The array is gonna be 70 chars and I don't want it to be one long line of code. Thanx *Suzanne*