An open API service indexing awesome lists of open source software.

https://github.com/danishzulfiqar/cp-reference

A reference to coding in C++ and C
https://github.com/danishzulfiqar/cp-reference

coding-challenge competitive-programming cplusplus cprogramming reference-sheet

Last synced: 4 months ago
JSON representation

A reference to coding in C++ and C

Awesome Lists containing this project

README

          

# My Templete

```
#include
using namespace std;

int main()
{
ios::sync_with_stdio(0);
cin.tie(0);

return 0;
}

```