Amaurijr Posted April 28, 2012 Report Share Posted April 28, 2012 (edited) 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 May 9, 2012 by kuroi Adicionar tag CODE Quote Link to comment Share on other sites More sharing options...
0 Jhonas Posted May 6, 2012 Report Share Posted May 6, 2012 exemplohttp://forum.imasters.com.br/topic/264920-...f-e-scanf-no-c/abraço Quote Link to comment Share on other sites More sharing options...
Question
Amaurijr
tenho que fazer um software de currículo ara a quarta feira e construi esse código em C++ usando o Dev-c++
está dando erro nos printf
Edited by kuroiAdicionar 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.