Jump to content
Fórum Script Brasil
  • 0

Duvida numa questão com Strings !


wesleynobrega

Question

Caros amigos,

Eis a questão:

Implementar uma função que receba um nome de uma pessoa como parâmetro e
retorne uma mensagem de boas vindas. Exemplo: Seja bem vindo, João!
Eis o código
#include <stdio.h>
#include <strings.h>
char* printnome(char nome[100]) {
char msg[100]= "Seja bem-vindo, ";
strcat(msg,nome);
return msg;
}
int main() {
char nome[100], msg[100];
strcpy(nome, "CEAD");
printf("%s",printnome(nome));
}
Mas não funciona !!!!

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Acho que a melhor forma seria usando memoria dinâmica:

#include <stdio.h>
#include <string.h>
 
char* printnome(char nome[100]) {
    char* p = malloc( sizeof(char)*100+1 );
    if(p == NULL) return NULL;
    sprintf(p, "Seja bem-vindo, %s!", nome );
    return p;
}
 
int main() {
  char nome[100];
  strcpy(nome, "CEAD");
  char* p = printnome(nome);
  printf("%s", p);
  
  free(p);
  return 0;
}

:unsure:

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