Guest User

Untitled

a guest
Nov 17th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. // File: goFile.cpp
  2. #include <cstdio>
  3. #include <iostream>
  4. #include <string>
  5. #include "Student_H.h";
  6.  
  7. int main() {
  8.  
  9. Student *orel = new Student(1, "Orel Eraki", "Rosh haayin");
  10.  
  11. std::cout << orel->details();
  12.  
  13.  
  14. return 0;
  15. }
Add Comment
Please, Sign In to add comment