Skip to content

Instantly share code, notes, and snippets.

View adi0603's full-sized avatar
🎯
Focusing

Aditya Pandey adi0603

🎯
Focusing
View GitHub Profile
@adi0603
adi0603 / uberhigheringchallenge.c
Last active June 21, 2019 20:06
Week 3 Code - Uber
//
// Created By Aditya Pandey BCA
//
#include <stdio.h>
void displayArray(int ar[],int size); //declaring array printing function
int main(void) {
int size = 5; //giving size of array
int old[size],new[size],j,i;
printf("Enter numbers in array\n");