Advertisement
ClaymoreTF2

Untitled

Aug 26th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. void przywitanie(string p, int w, static char* l)
  2. {
  3.     std::cout<<p<<"/"<<w<<"/"<<l<<endl;
  4. }
  5.  
  6. int main()
  7. {
  8.     string płeć = Mężczyzna;
  9.     int wiek = 21;
  10.     template<typename T>
  11.     static T lokacja = Katowice;
  12.     przywitanie(płeć, wiek, lokacja);
  13.  
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement