- 13,127
- Posts
- 20
- Years
- Between your fantasy and my reality
- Seen May 9, 2025
NO GET BACK HERE we need people around to chat. :(
yeah I know, I'm one to talk. zzzzz.
yeah I know, I'm one to talk. zzzzz.
using namespace std;
struct user
{
string name;
bool hungry;
};
int main()
{
user Cosmic {"Cosmic", true};
if (Cosmic.hungry==true) {cout << "Cosmic is hungry, and will eat" <<
" some delicious jam doughnuts :D" << endl;}
else {cout << "Cosmic is not hungry." << endl;}
return 0;
}