lagisck
(usa Debian)
Enviado em 17/01/2013 - 13:57h
queria que vc desse um olhada nesse codigo:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <conio.h>
struct tpcadastro
{
char nome[30];
char setor[30];
};
void cadastrar(FILE *arq)
{
tpcadastro r;
arq=fopen("cadastro.dat","ab+");
printf("Digite o nome do funcionário:");
gets(r.nome);
printf("Digite o setor da empresa:");
gets(r.setor);
fclose(arq);
}
int main(void)
{
FILE *arq;
cadastrar(arq);
}
Quando vo compilar
ele da esses erros
E:\Rafael\Algoritmos C\ASTECA\ASTECA.c:13:5: error: unknown type name 'cadastro'
E:\Rafael\Algoritmos C\ASTECA\ASTECA.c:16:11: error: request for member 'nome' in something not a structure or union
E:\Rafael\Algoritmos C\ASTECA\ASTECA.c:18:11: error: request for member 'setor' in something not a structure or union
Se alguem poder ajudar agradeço