C言語で文字列を逆にするサンプル

サンプルコード

#include <stdio.h>
void reverseSentence();
 
int main()
{
    printf("文字列を入力してください: ");
    reverseSentence();
 
    return 0;
}
 
void reverseSentence()
{
    char c;
    scanf("%c", &c);
 
    if( c != '\n')
    {
        reverseSentence();
        printf("%c",c);
    }
}

実行結果:

文字列を入力してください: arkoob
bookra

C++

Posted by arkgame