Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. void printDate();
  5.  
  6. int main()
  7. {
  8. printDate();
  9. return 0;
  10. }
  11.  
  12. void printDate()
  13. {
  14. cout << "Today is 02-27-2017" << endl;
  15. return;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement