Does anyone help me with this program in Ansi C, program CRUD? [closed]

1

I have already tried to delete half of the code and leave it with the first block only, but it gets error in the operators and in each scanf that I give, being that I have to find a way to assign the values I get from scanfs e play within the appropriate variables. Can someone help me please?

#include <stdio.h>
#include <stdlib.h>
char _nome[20];
int _idade[9];
int _cpf[11];
main()
         {
            const int dez = 10;
            printf("O CRUD - cadastre o usuário, com nome, idade, cpf\n Nome: ");
                scanf("%s" &_nome);
            prinf("Idade: \n");
                scanf("%d" &_idade)
            printf("CPF(digite sem os pontos e sem traços): \n");
                scanf("%d" &_cpf);
            printf("usuário cadastrado com sucesso! \n Deseja alterar os dados de algum usuario? \n s ou n");
            scanf("s || n");
            if (scanf "s" == 1);
            else
            system("pause");
            printf("Qual dos dados do usuário você deseja alterar? \n Nome = 1 \n Idade = 2 \n CPF = 3 \n");
                if (scanf == 1);
                    function _Leitura(get_pointer_safety);
                    if (scanf == 2);
                        function _Alterar(get_pointer_safety);
                        if (scanf == 3);
                        function _Excluir();
                        else
                        system("pause")
                    else
                    system("pause");
                else
                system("pause");

         }
         function _Leitura(get_pointer_safety)
         {
            if return _nome = 1;
            getchar();
            putchar() &char = &putchar(&_nome);
            else
            system("pause");
         }
         function _Alterar()
         {
            printf("alterando dados do usuário... \n Nome: ");
            getchar();
            putchar(_Usuario());
            printf("Idade: \n");
                scanf("%d");
            printf("CPF: \n");
                scanf("%d");
            printf("Mais alguma coisa? \n s ou n");
                scanf("%s")
            if scanf("%s") == "s"
            return _a
            else
            system("pause");
         }
         function _Excluir()
         {

         }
    
asked by anonymous 01.12.2015 / 03:33

1 answer

1

Try to make the following changes:

#include <stdio.h>
#include <stdlib.h>
char _nome[20];
//int _idade[9];
int _idade;
char _cpf[11];
const int dez = 10;
int _Leitura(void);
int _Alterar(void);

void main(){

    int opt = 0;
    char continuar = 'n';
    //const int dez = 10;

    printf("%s", "O CRUD - cadastre o usuário, com nome, idade, cpf\n Nome: ");
    scanf("%s", &_nome);
    printf("Idade: \n");
    scanf("%d", &_idade);
    printf("CPF(digite sem os pontos e sem traços): \n");
    scanf("%s", _cpf);
    printf("usuário cadastrado com sucesso! \n Deseja alterar os dados de algum usuario? \n s ou n");
    scanf("%s", &continuar);

    if (continuar == 's'); //            if (scanf "s" == 1);
        else
        system("pause");

    printf("Qual dos dados do usuário você deseja alterar? \n Nome = 1 \n Idade = 2 \n CPF = 3 \n");
    scanf("%d", &opt);

    if (opt == 1)
        _Leitura();
    if (opt == 2)
        _Alterar();
    if (opt == 3)
        1;
        //_Excluir();
    else
        system("pause");
              /*  else
                    system("pause");
                else
                system("pause");*/

}

int _Leitura(void){

    if (_nome == '1')
        getchar();
//            putchar() &char = &putchar(&_nome);
    else
        system("pause");
}

int _Alterar(void){

    char continua;
    int _a = 1;
    printf("alterando dados do usuário... \n Nome: ");
//            getchar();
            //putchar(_Usuario());
    scanf("%s", &_nome);
    printf("Idade: \n");
    scanf("%d", &_idade);
    printf("CPF: \n");
    scanf("%d", &_cpf);
    printf("Mais alguma coisa? \n s ou n");
    scanf("%s", &continua);
    if (continua == 's')
        return _a;
    else
        system("pause");
}

/*         function _Excluir()
         {

         }*/

This example already compiles, so it will help you understand the syntax and allow you to debug while rolling

    
01.12.2015 / 05:31