Posts by vfbraton • 23 points
1 post
-
2
votes2
answers105
viewsQ: Trying to understand c/c++ pointers
Hi guys I’m new to the stack and it’s like this: I’m studying pointers and I made the following code: typedef struct { char nom[256]; int size; float value; }tdados; // criando o tipo tdados com…