Posts by andrehigher • 21 points
2 posts
-
2
votes1
answer1098
viewsA: Why is this error? - invalid application of ?sizeof' to incomplete type
Put the following code before the function main. typedef struct aluno{ int matricula; char nome[50]; char curso[20]; }Aluno; Reason: He’s doing the malloc before loading the data structure itself,…
-
0
votes1
answer84
viewsA: The bug with Garbage Collection (garbage collector) was fixed in which version of PHP?
Yes, if you upgrade to PHP 5.3 it will solve your Collector Garbage problem, since it exists in this version of PHP. http://php.net/manual/en/features.gc.php Anyway, I always recommend to upgrade to…