Skip to content

Instantly share code, notes, and snippets.

@rahulthetoolsmaker
rahulthetoolsmaker / string.cc
Created February 1, 2023 08:11 — forked from karthikkondagalla/string.cc
Manual String class implementation in C++
#include "String.h"
#include <cstring>
#include <cstdlib>
const size_t String::npos=-1;// greatest possible value for type size_t
/******************************************************
Function: String
Arguments: None
Description: Default constructor
Return: Nothing
*******************************************************/
@rahulthetoolsmaker
rahulthetoolsmaker / oop_python.ipynb
Created September 2, 2022 17:09 — forked from kanmaytacker/oop_python.ipynb
Objected-oriented programming with Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.