#include
using namespace std;
int main() {
int x = 5000;
float y = 10.141;
bool weather is sunny = False;
double pi = 3.145932356;
char ch = ‘A’;
cout <<"int"<<size of (x)<<endl;
cout <<"float"<<size of (y)<<endl;
cout <<"bool"<<size of (weatheris sunny)<<endl;
cout <<"double"<<size of (pi)<<endl;
cout <<"char"<<size of (ch)<<endl;
return 0;
}
Can u tell me whats the error in my code