文件目录

#include <iostream>
using namespace std;
int main()
{
    float f;
    double d;
    cout << sizeof(f) << " " << sizeof(d);
    return 0;
}