This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
blog/_posts/2020-09-17-print-hello-world-part-1.md

25 lines
1.5 KiB
Markdown
Raw Normal View History

2020-09-17 02:45:53 +00:00
---
layout: post
title: "print(\"Hello, world!\") - Part 1"
author: Ta180m
tags: ["Programming"]
---
2020-09-17 02:53:44 +00:00
> *“C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do it blows your whole leg off.”*
>
> *-- Bjarne Stroustrup, creator of C++*
2020-09-17 02:45:53 +00:00
There are a few reasons why the vast majority of competitive programmers use C++: it has a decent standard library, several good reference sources, and lots of tutorials online. But these factors are not unique to C++; what matters is its speed. A few milliseconds could be the difference between and accepted solution and time limit exceeded. Anyways, here's the code, about two weeks late, written in the "conventional" C++ style, as opposed to the condensed, macro-abusing style of competitive programmers.
<script src="https://emgithub.com/embed.js?target=https%3A%2F%2Fgithub.com%2FTa180m%2Fprint-Hello-World-%2Fblob%2Fmaster%2Ftest.cpp&style=hybrid&showBorder=on&showLineNumbers=on&showFileMeta=on"></script>
| Factor | Rating | Description |
| --- | --- | --- |
| Speed | 3 | Very fast after compilation, nearly as fast as C, and faster than a lot of programming languages even counting compilation |
| Documentation | 3 | Not that I used any when writing this program, but there a lot of good resources out there, such as [cplusplus.com](www.cplusplus.com) |
| General | 3 | C++ has its flaws, but for some applications such as competitive programming, it's unbeatable |
Be on the lookout for Part 2, Python! No guarantees about the date, but it should show up in a few days, once I get some time.