Error in my program C

1

I need to create a C program that removes (or copies) values from a queue using the output rules of a stack and adds them to a new structure.

I mounted as below but two errors occur:

  

"undefined reference to 'WinMain @ 16'   File not found: ctr0_c.c "

     

"error: Id returned 1 exit status   File not found: collect2.exe "

Can anyone help me where I'm going wrong? What should I change?

#include <stdio.h>
#include <stdlib.h>
#include <locale.h>

//Constantes
#define tamanho 5

//Fila
struct estrutura{
   int dados [tamanho];
   int ini;
   int fim;
};

//variaveis globais
struct estrutura fila;
struct estrutura pilha;
int op;

//prototipacao
void fila_entrar();
void fila_sair();
void fila_mostrar();
void menu_mostrar ();
void pilha_mostrar();
void pilha_mover();

//funcao principal
int mais(){
    setlocale(LC_ALL, "Portuguese");
    op=1;
    fila.ini=0;
    fila.fim=0;
    pilha.ini=0;
    pilha.fim=0;
    while(op!=0){
        system("cls");
        fila_mostrar();
        pilha_mostrar();
        menu_mostrar();
        scanf("%d", &op);
        switch(op){
        case 1:
            fila_entrar();
            break;
        case 2:
            fila_sair();
            break;
        case 3:
            pilha_mover();
            break;
        }
    }
    return(0);
}

//add elemento no final da fila
void fila_entrar(){
    if(fila.fim==tamanho){
        printf("\nA fila está cheia\n");
        system("Pause");
    }else{
        printf("\nDigite o valor a ser inserido: ");
        scanf("%d", &fila.dados[fila.fim]);
        fila.fim++;
    }
}

//retirar o primeiro elemento da fila
void fila_sair(){
    if(fila.ini==fila.fim){
        printf("\nA fila esta vazia, adicione algum valor\n");
        system("Pause");
    }else{
        int i;
        for(i=0;i<tamanho;i++){
            fila.dados[i]=fila.dados[i+1];
        }
        fila.dados[fila.fim]=0;
        fila.fim--;
    }
}

//mostra o conteudo da fila
void fila_mostrar(){
    int i;
    printf("[ ");
    for(i=0;i<tamanho;i++){
        printf(" %d", fila.dados[i]);
    }
    printf(" ]\n\n");
}

//mostra o menu de opções
void menu_mostrar(){
    printf("\nEscolha uma opção:\n");
    printf("1- Incluir na fila\n");
    printf("2- Excluir da fila\n");
    printf("3- Mover para a pilha\n");
    printf("0-Sair\n\n");
}

//mostrar conteudo da pilha
void pilha_mostrar(){
    int i;
    printf("[ ");
    for(i=0;i<tamanho;i++){
        printf(" %d", pilha.dados[i]);
    }
    printf(" ]\n\n");
}

//mover para a pilha
void pilha_mover(){
    if(fila.ini==fila.fim){
        printf("\nA fila esta vazia, adicione algum valor\n");
        system("Pause");
    }else{
        pilha.dados[pilha.fim]=fila.dados[fila.fim];
        pilha.fim++;
    }
}
    
asked by anonymous 04.06.2016 / 19:29

1 answer

2
  

"undefined reference to 'WinMain @ 16' File not found: ctr0_c.c"

That is, you have not defined the main function anywhere. What happens is that you entered it wrong, put mais() instead of main() . Also, either you will have to put your main function at the end or else declare a prototype of it in the beginning the same way you did for the other functions.

    
04.06.2016 / 19:52