PracticeDev/study_cpp/cpp_primer_source_code/Appendix E/align.cpp

9 lines
121 B
C++
Raw Normal View History

2022-12-20 17:31:11 +08:00
#include <iostream>
using namespace std;
int main()
{
cout << alignof(double) << endl;
cin.get();
return 0;
}