We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
  • Practice
  • Certification
  • Compete
  • Career Fair
  • Hiring developers?
  1. Practice
  2. C++
  3. Introduction
  4. Say "Hello, World!" With C++
  5. Discussions

Say "Hello, World!" With C++

Problem
Submissions
Leaderboard
Discussions
Editorial

    You are viewing a single comment's thread. Return to all comments →

  • Lauman
    4 years ago+ 0 comments
    #include <iostream>
    using std::cout;
    
    template <typename T> T print(void){
        return "Hello, World!";
    }
    
    int main() {
        cout << print<const char *>();
        return 0;
    }
    
    6|
    Permalink
  • Contest Calendar
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy
  • Request a Feature