We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
#include<stdio.h>#include<stdlib.h>intmain(){intnum,*arr,i;scanf("%d",&num);arr=(int*)malloc(num*sizeof(int));for(i=0;i<num;i++){scanf("%d",arr+i);}/* Write the logic to reverse the array. */int*myarr=(int*)malloc(num*sizeof(int));for(inti=num-1;i>=0;i--){printf("%d ",arr[i]);myarr[i]=arr[i];}return0;}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Array Reversal
You are viewing a single comment's thread. Return to all comments →
You guys over complicate so much