Help with SQL commands to interact with a MySQL database
- Mac /usr/local/mysql/bin
- Windows /Program Files/MySQL/MySQL version/bin
- Xampp /xampp/mysql/bin
//Snake and Ladder Game | |
//Project 1: Built Year 2019 | |
#include<iostream.h> | |
#include<conio.h> | |
#include<stdlib.h> | |
#include<process.h> | |
char *square={"01234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950"}; | |
char *nul={" "}; | |
char *ernul={" "}; | |
char *erase={"01234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950"}; |
/* | |
This a header file that includes every standard library. | |
You can use it to save time. | |
NOTE: This header file may not be recognized by compilers | |
other than gcc. | |
*/ | |
#include <bits/stdc++.h> | |
/* | |
//Use this if the above header file doesn't work. |
Setter/Tester tips are shared here -> https://gist.github.com/shashank21j/64830e7e3dab96a2ccb8
Creating a Contest on HackerRank is an easy process which is divided in 2 steps.
#1. Create a Challenge