fork download
  1. #include <iostream>
  2. using namespace std;
  3. struct Movie { string title; };
  4. int main() {
  5. Movie m = {"Inception"};
  6. cout << m.title << endl;
  7. return 0;
  8. }
  9.  
  10.  
  11.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Inception