#include "stdafx.h"#include#include "common.h"#include "t4.h"typedef struct { long l; int i[5]; char c; double db;}S_DATA;int t4(void){ printf("size double = %d\n", sizeof(double)); printf("size float = %d\n", sizeof(float)); printf("size long = %d\n", sizeof(long)); printf("size long int = %d\n", sizeof(long int)); printf("size int = %d\n", sizeof(int)); printf("size short int = %d\n", sizeof(short int)); printf("size short = %d\n", sizeof(short)); printf("size char = %d\n", sizeof(char)); printf("size char* = %d\n", sizeof(char *)); printf("size S_DATA = %d\n", sizeof(S_DATA)); return 0;}/*size double = 8size float = 4size long = 4size long int = 4size int = 4size short int = 2size short = 2size char = 1size char* = 4size S_DATA = 40Press any key to continue . . .*/