Posts by João Vitor Santos • 11 points
1 post
-
-1
votes1
answer52
viewsQ: I want to know why the first gap of the is does not perform a second time
#include <stdio.h> #include <stdlib.h> struct carro { char marca[10]; char modelo[10]; int ano; char lplaca[3]; int nplaca; }; struct carro cad[2]; int main (void) { int i; for (i=0;…
casked João Vitor Santos 11