How to convert char to string in C

3 Answers

0 votes
#include <stdio.h>

int main() {
    char ch = 'A';
    char str[2] = "";
    
    str[0] = ch;
    
    puts(str);

    return 0;
}



/*
run:

A

*/

 



answered Mar 5, 2025 by avibootz
0 votes
#include <stdio.h>

int main() {
    char ch = 'A';
    char str[2] = "";
    
    sprintf(str, "%c", ch);
    
    puts(str);

    return 0;
}



/*
run:

A

*/

 



answered Mar 5, 2025 by avibootz
0 votes
#include <stdio.h>
#include <string.h>

int main() {
    char ch = 'A';
    char str[2] = "";
    
    strncpy(str, &ch, 1);
    
    puts(str);

    return 0;
}



/*
run:

A

*/

 



answered Mar 5, 2025 by avibootz

Related questions

1 answer 100 views
1 answer 179 views
1 answer 104 views
104 views asked Feb 8, 2024 by avibootz
1 answer 144 views
1 answer 138 views
138 views asked Jun 20, 2021 by avibootz
...