Quantcast
Channel: HOW TO INITIATE A CHAR ARRAY
Browsing all 4 articles
Browse latest View live

HOW TO INITIATE A CHAR ARRAY

change to:char EMPLEADOS[] = {'A', 'B', 'C', 'D', 'E'};Since that is too tedious for most programmers, one can also do this:char EMPLEADOS[] = {"ABCDE"};or even this:char EMPLEADOS[] = "ABCDE";

View Article



HOW TO INITIATE A CHAR ARRAY

Hi Daveno, that´s a type-o. I get a different number of errors.

View Article

HOW TO INITIATE A CHAR ARRAY

If the code you posted is a direct cut-and-paste, it looks like you're trying to assign a two-character value to EMPLEADOS[0].  That might cause a problem.Dave.

View Article

HOW TO INITIATE A CHAR ARRAY

 Hi thereI have the code below but getting Errors when running due to the definition of the constant EMPLEADOS. Can you let me know how to assign characters to individual spaces within the...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images