11 lines
165 B
C++
11 lines
165 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
float a;
|
|
double b;
|
|
cout << sizeof(a) << " " << sizeof(b) << endl;
|
|
return 0;
|
|
}
|