KodeGod.com

059. Technical interview question: Give the output of following code

 
struct
{
        int i;
        float ft;
} x;
int main()
{
        x.i = 4;
        x.ft = 7.96623;
        printf("%d %.2f", x.i, x.ft);
        return 0;
}