aboutsummaryrefslogtreecommitdiffstats
path: root/sizeofsize_t.c
blob: 12848397c995101e7837015e3bbb219ad38cdc65 (plain)
1
2
3
4
5
6
7
#include<stdio.h>
#include<stdlib.h>

int main ( int argc, char *argv[] ) {
    int size = sizeof(size_t);
    printf("The size of size_t is %dB or %db\n", size, size * 8);
}