Posts by Daniel Saldanha • 31 points
1 post
-
1
votes2
answers100
viewsQ: String compilation problem in C
I’m trying to compile this code into C: #include<stdio.h> #include<string.h> #define tam 100 typedef struct TipoAluno{ char nome[50]="A"; char curso[50]="B"; char cota[50]="C"; int…