-5

重複の可能性:
Cで2つの文字列を連結する方法は?

#include <stdio.h>
#include <string.h>

/* Function prototypes */
void wordLength ( char *word );
void wordConcat ( char *wordC1, char *wordC2);


int main (void)
{
    int choice;
    char word [20];
    char wordC1 [20];
    char wordC2 [20];

    printf( "Choose a function by entering the corresponding number: \n"
        "1) Determine if words are identical\n"
        "2) Count number of words in sentence provided\n"
        "3) Enter two strings to be strung together\n"
        "4) Quit program\n" );
    scanf( "%d", &choice );
    flushall();

    while (choice >= 1 && choice < 4) 
    {
        /* if statements for appropriate user prompt and calls function */
        if (choice == 1) 
        {
            /* gather user input */
        printf( "\nYou have chosen to determine word length.\n"
                "Please enter the word:\t");
            gets( word );

            /* call function to output string as well as the string length */
            wordLength( word );
        }

        else if (choice == 2)
        {
            printf( "\nYou have chosen to concatenate 2 words with a % symbol in between them.\n"
                "Please enter word 1:\t");

            gets( wordC1 );

            printf("Please enter word 2:\t");

            gets( wordC2 );                     

            /* call function to output string as well as the string length */
            wordLength( word );
        }
    }
}

void wordLength( char *word )
{
    int length;

    printf( "\nThe string entered is:  %s\n\n", word);

    length = strlen (word);

    printf("The string length is: %d\n", length);

    return;
}

void wordConcat(char *wordC1, char *wordC2)
{
    printf( "\nThe first word entered is:  %s\n", wordC1);
    printf( "\nThe second word entered is:  %s\n", wordC2);
}

別々の文字列からの2つの単語を連結しようとしています。MSDNライブラリでこれを行う方法が見つからないようです。Cにも存在しますか?それとも、ある種のアルゴリズムが必要ですか?これはどのように行われますか?

4

1 に答える 1

0

strcat()は使用する標準関数であり、この関数は非常に単純で、通常は C で記述されているため、最初から簡単に記述できます。

于 2012-11-12T00:00:23.460 に答える