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 94 views
1 answer 125 views
125 views asked Feb 10, 2023 by avibootz
3 answers 179 views
179 views asked Feb 9, 2023 by avibootz
1 answer 144 views
2 answers 577 views
577 views asked Aug 8, 2019 by avibootz
1 answer 267 views
...