Advertisement
Ergazia

Untitled

Jul 11th, 2020
1,136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. struct Human
  6. {
  7.   string name;
  8.   float bite;
  9. };
  10.  
  11. int main()
  12. {
  13.     Human hey{};
  14.     hey.name = "Bob";
  15.     cout << hey.name;
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement