What is output? Giả sử dùng VC++ 2008 trên hệ điều hành 32 bit

#include <stdio.h>
#include <conio.h>
 
typedef struct
{
    char c; // 1 byte
    float b; // 4 byte
    int a;   // 4 byte
}A; 
 
void main()
{
    printf("\n Size of struct: %d", sizeof(A));
    getch();
}

 

Suy nghĩ trả lời câu hỏi trước khi xem đáp án

ATNETWORK
ZUNIA9