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 int in C

3 Answers

0 votes
#include <stdio.h>

#define UINT unsigned int

int main(void)
{
    UINT a = 72369;

    printf("%d", a);

    return 0;
}




/*
run:

72369

*/

 



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

typedef unsigned int unit;

int main(void)
{
    unit a = 72369;

    printf("%d", a);

    return 0;
}




/*
run:

72369

*/

 



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

typedef unsigned int u32;

int main(void)
{
    u32 a = 9876761;

    printf("%d", a);

    return 0;
}




/*
run:

9876761

*/

 



answered Feb 9, 2023 by avibootz

Related questions

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