code-dump
code-dump copied to clipboard
Make your first PR! Add your profile, a blog, or any program under any language (hello-world program to anything) or update the existing one. Just make sure to add the file under the correct directory...
Added code for asteroid collision using stack in cpp.
#include using namespace std; int main () { int var = 20; // actual variable declaration. int *ip; // pointer variable ip = &var; // store address of var in...
Added NQueen.py to Python folder of this repository. Hacktoberfest