Jump to content
Fórum Script Brasil
  • 0

Problema ao efetuar loops usando a função gets para receber uma string


Hyller Bandeira

Question

Estava efetuando um estudo sobre string e escrevi um código simples para uso de strings, inicialmente escrevi usando o scanf, porém o mesmo incapacita a utilização de espaço no array, entretanto ele executou sem problemas. Ao realizar a troca do scanf pelo gets começou a gerar erro quando efetuado o loop. Abaixo se encontra o código "defeituoso".
Certo de sua dedicação e ajuda desde já agradeço.
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
void ex1(){
char nome[10];
int i;
printf("insira um nome de no maximo 10 caracteres: ");
gets(nome);
printf("%s\n", nome);
for(i=9;i>=0;i--){
printf("%c",nome);
}
printf("\n");
}
int main(int argc, char *argv[]) {
char op;
do{
system("cls");
ex1();
printf("Deseja fechar a aplicação? (tecle n para continuar ou qualquer tecla para sair...)");
scanf(" %c", &op);
}while((op=='n')||(op=='N'));
}
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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
      652.1k
×
×
  • Create New...