Posts by Igor Ferreira • 1 point
2 posts
-
0
votes1
answer321
viewsA: error in Pow() and sqrt()
So you can use the Math. h library or put it in the build(-1m) parameters of your IDE gcc -o </path/do/program/program. c> -1m
canswered Igor Ferreira 1 -
0
votes1
answer367
viewsA: Concatenate strings in Arduin
Can be done this way, remember to do the result pointer free const size_t len1 = strlen(s1); const size_t len2 = strlen(s2); char *result = malloc(len1 + len2 + 1); // +1 para o \0 memcpy(result,…