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 79 views
1 answer 115 views
115 views asked Feb 10, 2023 by avibootz
3 answers 160 views
160 views asked Feb 9, 2023 by avibootz
1 answer 135 views
2 answers 564 views
564 views asked Aug 8, 2019 by avibootz
1 answer 250 views
...