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
- Host: GitHub
- URL: https://github.com/danishzulfiqar/cp-reference
- Owner: danishzulfiqar
- Created: 2022-09-18T10:08:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-12T17:09:56.000Z (over 3 years ago)
- Last Synced: 2025-04-27T06:52:14.340Z (about 1 year ago)
- Topics: coding-challenge, competitive-programming, cplusplus, cprogramming, reference-sheet
- Language: C++
- Homepage:
- Size: 2.16 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Templete
```
#include
using namespace std;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
return 0;
}
```