??? 02/23/08 14:19 Read: times |
#151337 - Array of string Responding to: ???'s previous message |
code char strings[] = { "CALIBRATE", "L. TURBINE", "R. TURBINE", "CMB", "" // This must always be at the END of this list! }; Isn't it better to revise it as follows :-) code char * code strings[] = { "CALIBRATE", "L. TURBINE", "R. TURBINE", "CMB", "" // This must always be at the END of this list! }; Tsuneo |