Posts by Patrícia Buzzatto Siqueira • 11 points
1 post
-
1
votes0
answers58
viewsQ: Global vector with variable size - C programming
I’m trying to create a global vector whose size is defined within a function. My code got this way: struct body{ double m; double a; double n; double e; double w; double I; double W; }; struct body…