#include #include "bitmap.h" // This program prints out the size of a struct used in the // bitmap project. // Remove the #pragma's from the bitmap.h file, and observe the effect. int main() { BITMAPFILEHEADER a; printf("sizeof(a) == %d\n", sizeof(a)); }