hola a todos,
he hecho este programa y no funciona , sabeis porque?
//concatenacion de variables
//string. concat (string, string2)
#include <string.h>;
int val1=1234;
int val2=5678;
char x;
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
x= string.concat(val1,val2);
}
cuando complino me dice que no existe string.
muchas gracias de antemano.