This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 :| |