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.

39,855 questions

51,776 answers

573 users

How to input two characters using scanf in C

2 Answers

0 votes
#include <stdio.h>

int main(void) {
    char ch1, ch2;

    printf("Enter two characters: ");

    scanf("%c", &ch1);
    scanf(" %c", &ch2);

    printf("ch1: %c, ch2: %c\n", ch1, ch2);

    return 0;
}



// Enter 'a' Space 'b'


/*
run:

Enter two characters: a b
ch1: a, ch2: b

*/

 



answered Sep 21, 2021 by avibootz
edited May 22, 2023 by avibootz
0 votes
#include <stdio.h>

int main(void) {
    char buf[3] = "";

    printf("Enter two characters: ");

    scanf("%2sc", buf);

    puts(buf);

    return 0;
}



// Enter "ab"


/*
run:

Enter two characters: ab
ab

*/

 



answered Sep 21, 2021 by avibootz
edited May 22, 2023 by avibootz

Related questions

1 answer 117 views
1 answer 130 views
130 views asked Sep 21, 2021 by avibootz
1 answer 95 views
95 views asked Aug 8, 2024 by avibootz
1 answer 101 views
101 views asked Jul 12, 2023 by avibootz
1 answer 121 views
121 views asked Jul 12, 2023 by avibootz
1 answer 120 views
...