Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,023 questions

51,974 answers

573 users

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 165 views
1 answer 91 views
91 views asked Feb 8, 2024 by avibootz
1 answer 120 views
1 answer 122 views
122 views asked Jun 20, 2021 by avibootz
...