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,870 questions

51,793 answers

573 users

How to short unsigned char in C

3 Answers

0 votes
#include <stdio.h>

typedef unsigned char uchar;

int main(void)
{
    uchar ch = 'a';

    printf("%c", ch);

    return 0;
}




/*
run:

a

*/

 



answered Feb 9, 2023 by avibootz
0 votes
#include <stdio.h>

typedef unsigned char u8;

int main(void)
{
    u8 ch = 'a';

    printf("%c", ch);

    return 0;
}




/*
run:

a

*/

 



answered Feb 9, 2023 by avibootz
0 votes
#include <stdio.h>

#define UCHAR unsigned char

int main(void)
{
    UCHAR ch = 'a';

    printf("%c", ch);

    return 0;
}




/*
run:

a

*/

 



answered Feb 9, 2023 by avibootz

Related questions

2 answers 539 views
539 views asked Aug 8, 2019 by avibootz
1 answer 82 views
1 answer 67 views
1 answer 105 views
105 views asked Feb 10, 2023 by avibootz
3 answers 152 views
152 views asked Feb 9, 2023 by avibootz
1 answer 117 views
...