fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. struct menuItemType {
  6. string menuItem ;
  7. double menuPrice;
  8. };
  9.  
  10. int main() {
  11. menuItemType hello;
  12. hello.menuItem ="hillll";
  13. cout << hello.menuItem ;
  14.  
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0.01s 5388KB
stdin
Standard input is empty
stdout
hillll