Output of snippet 
#include <stdio.h>
int main() 
{
    int intType;
    float floatType;
  
    printf("Size of int: %zu bytes\n", sizeof(intType));
    printf("Size of float: %zu bytes\n", sizeof(floatType));
    return 0;
}

Posted on by