Jump to content
Fórum Script Brasil
  • 0

Colocar primeira letra de cada palavra em maiúcula


rflbboy

Question

Fiz um programa que pede o nome completo, e quero quee o programa faz todas primeiras letras dos nomes passem para maiúscula, mas ele está dando erro. O que tem de errado?

#include <stdio.h>
#include <ctype.h>
#define ESPACO ' '

char *first(char *s)
{
     int i;
     s[0] = toupper(s[0]);
     for(i=0;s[i-1]!='';i++)
       {  if(s[i-1]==ESPACO)
            s[i]=toupper(s[i]);
         else
            s[i]=tolower(s[i]);}
     return s;
}
         

main()
{
      char nome[100];
      puts("Digite seu nome:");
      gets(nome);

      puts(first(nome));
      getch();
}

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

você deve usar !='\ 0' para indicar o fim da string. (sem o espaço pois barra zero é removido quando envia o tópico)

char *first(char *s)
{
     int i=1;
     s[0] = toupper(s[0]);
     while(s[i]!='\ 0'){ // sem o espaço
        if(s[i-1]==ESPACO)s[i]=toupper(s[i]);
        else s[i]=tolower(s[i]);
        i++;
    }
     return s;
}

Edited by lucas.js
Link to comment
Share on other sites

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...