13 Oct
2022
13 Oct
'22
11:46 p.m.
class HelloWorld { public: char const *hello; char const *world; }; void main() { HelloWorld helloworld; helloworld.hello = “hello”; helloworld.world = “world; printf(“%s %s\n”, helloworld.hello, helloworld.world); }