How to Declare a 32-bit Integer in C

#include <stdint.h>

int32_t my_32bit_int;

Leave a Comment