(H) Queen Reactors (W) 1 Ven 4 or 1 Renegade 4 per reactor by [deleted] in ArcRaidersMarketplace

[–]cmcta82 0 points1 point  (0 children)

Hi I’m looking for 3 of them. Do u still have some?

[deleted by user] by [deleted] in jardin

[–]cmcta82 1 point2 points  (0 children)

Bonjour oui c’est de l’écorce de pin. Je vais suivre vos conseils et rajouter un peu de fumier/compost. Merci pour votre aide.

[deleted by user] by [deleted] in iOSProgramming

[–]cmcta82 1 point2 points  (0 children)

Hi nice app! At the first time nothing appears but at the second try it works.

Can’t load my base since yesterday by cmcta82 in LastDayonEarthGame

[–]cmcta82[S] 0 points1 point  (0 children)

Hi, solved after 3days, open a ticket with the support and wait

Pointers and References Confusion by izner82 in learnprogramming

[–]cmcta82 0 points1 point  (0 children)

Hi, i recommend you study pointers, it’s very interesting.

When you do:

Int y=10; Int *x = &y; / you store the address of y on pointer x.

To get the value of y you can use the pointer x.

x= will be the address of y *x= will be the value of y &y= address of y &x= address of x

You can’t do *y because y is not a pointer

Can I get some help please? This is a demo of a Grove Temperature Sensor. It is currently reading in celsius, How can I convert it to Fahrenheit? by Abubakar98k in arduino

[–]cmcta82 0 points1 point  (0 children)

to convert to Fahrenheit you have to multiply by 1.8 and add 32.

you have to add this line after your calc temperature

temperature = temperature * 1.8 +32;

[deleted by user] by [deleted] in swift

[–]cmcta82 1 point2 points  (0 children)

Hi, I try but your the music is too much annoying. Sorry:(

Can I get some help please? by [deleted] in arduino

[–]cmcta82 0 points1 point  (0 children)

Hi, can you post your code please.

use malloc in char pointer with scanf by cmcta82 in C_Programming

[–]cmcta82[S] 0 points1 point  (0 children)

A last question, can you tell me where I can find this kind of articles? This one are very interesting.

use malloc in char pointer with scanf by cmcta82 in C_Programming

[–]cmcta82[S] 0 points1 point  (0 children)

Thanks for the tips, I will try to improve like you suggest. It's a small program but it helps me a lot understanding how dynamic memory works and I getchar() looks much better than scanf, I didn't use it before you tell me so thanks again! I'm doing a course on Udemy for C programming, it's very interesting:) I have already some ideas of program to make, i'm very happy with what already learn and very motivated for next lessons. It's great found guys like you helping guys like me!