Posts by Marcio Henrique • 63 points
4 posts
-
0
votes1
answer179
viewsQ: Handling of JAVA Attributes
Good afternoon, I’m with a college job and it’s the first semester I’m learning java. The job basically is: Make an interface that would represent any geometric figure, in it specify methods of area…
-
0
votes0
answers178
viewsQ: Index of Vector in C
I have this function which is called through a menu of options: char cad_cliente()//cadastro de clientes { char resp;//variavel de resposta se cpf invalido system("cls");//limpa tela for(int c = 0;…
-
2
votes2
answers9106
viewsQ: Remove array element in C
I have the following struct. struct cadastro{ int codigo; char nome[200]; char cpf[11]; char rg[10]; char tel[12]; char end[100]; }cadastro;//struct do tipo cadastro. and the corresponding vector…
-
4
votes1
answer105
viewsQ: Vector reading in C is wrong
struct cadastro{ int codigo; char nome[200]; char cpf[11]; char rg[10]; char tel[12]; char end[100]; }cadastro;//struct do tipo cadastro. struct cadastro cd[max];//vetor da funcao cadastro de…