Jump to content
Fórum Script Brasil
  • 0

software de curriculo em c++


Amaurijr

Question

tenho que fazer um software de currículo ara a quarta feira e construi esse código em C++ usando o Dev-c++

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

int main()
{
    char Nome_cli[16];
    char est_civil[20];
    char end[20];
    char cep[15];
    char bairro[16];
    char cidade[15];
    char tel[14];
    char cel[14];
    char email[16];
    
    
    printf("Curriculo Vitae\n\n");
    printf("Digite seu nome: \n\n");
    fgets(Nome_cli,16,stdin)
    printf(" O nome digitado e %s", &Nome_cli);
    printf("Estado civil:\n");
    fgets(est_civil,20,stdin);
    printf("Endereço:\n\n");
    fgets(end,20,stdin);
    printf("CEP:\n");
    fgets(cep,15,stdin);
    printf("Bairro:\n");
    fgets(bairro,16,stdin);
    printf("cidade:\n");
    fgets(cidade,15,stdin);
    printf("Telefone:\n");
    fgets(tel,14,stdin)
    printf("Celular:\n");
    fgets(cel,14,stdin)
    printf("e-mail:\n");
    fgets(email,16,stdin);
    system("pause");
    return(0);
}

está dando erro nos printf

Edited by kuroi
Adicionar tag CODE
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...