C++22nd Code--> (the memory size (in bytes) of each variable type using sizeof)
#include using namespace std; int main() { int x ; float y ; double z; long double l ; coutx; cout
#include
using namespace std;
int main()
{
int x ;
float y ;
double z;
long double l ;
cout<<"Enter int number x : ";
cin>>x;
cout<>y;
cout<>z;
cout<>l;
cout<