What is the output of this code 
#include <stdio.h>
    int main()
    {
        short int i = 6;
        char c = 7;
        printf("%d, %d, %d\n", sizeof(i), sizeof(c), sizeof(c + i));
        return 0;
    }

Posted on by