Skip to content

Instantly share code, notes, and snippets.

View ShivendraAgrawal's full-sized avatar

Shivendra Agrawal ShivendraAgrawal

View GitHub Profile
#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];
@ShivendraAgrawal
ShivendraAgrawal / Try.c
Last active December 20, 2015 08:49
Trying out this thing.
#include<stdio.h>
main()
{
printf("Hello");
}
# Ok, so the change was not reflected here. Interesting!!
#This is a 2nd change in the original file.
#3rd change. It's getting confusing here :|