CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
using namespace std;
int main() {
const char* a {"Hello World!!🌍🌎🌎👋"};
string b = "Hello World!!🌍🌏🌎👋";
cout<<a<<endl;
cout<<"Size of variable a --- "<<sizeof(a)<<endl;
cout<<"Size of variable b --- "<<sizeof(b)<<endl;
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run