Files
blog/content/C++.md
2026-03-31 02:07:49 -05:00

853 B

tags
tags
code
notes
docs
School
coding-notes
CS-101
public

overview

OOP language C code runs almost unchanged from C

title: "cplusplus.com"
image: "https://cplusplus.com/favicon.ico"
description: ""
url: "https://cplusplus.com/"
favicon: ""
title: "W3Schools.com"
image: "https://www.w3schools.com/images/w3schools_logo_436_2.png"
description: "W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more."
url: "https://www.w3schools.com/cpp/cpp_intro.asp"
favicon: ""
aspectRatio: "52.293577981651374"
#include <iostream>
#include <stdexcept

template <typename T>
class Vector{
	private:
		T* data:
		size_t sz;
		size_t cap;
}

\approx