#include <stdio.h>

char* ctos(char c)
{
    char s[2];
    sprintf(s, "%c\0", c);
    return s;
}

int main()
{
    printf(ctos('c'));
}