Skip to content

Instantly share code, notes, and snippets.

View ShivendraAgrawal's full-sized avatar

Shivendra Agrawal ShivendraAgrawal

View GitHub Profile
@ShivendraAgrawal
ShivendraAgrawal / 0_reuse_code.js
Created February 15, 2016 10:13
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
#include "iostream"
using namespace std;
void find_next(int num[], int n);
int main()
{
int n;
printf("enter n\n");
scanf("%d",&n);
printf("enter %d-digit no.\n",n);
int num[n];