Home C Descending Order Check in C Descending Order Check in C / August 03, 2017 Descending Order Check in C Code #include<stdio.h> int main(){ int a[15],i,flag=1; int n; scanf("%d",&n); for(i=0;i<n;i++) { scanf("%d",&a[i]); if(i>0) { if(!(a[i-1]>a[i])) flag=0; } } if(flag) printf("yes"); else printf("no"); return 0; } You Might Also Like Write a program that calculate the sum of the ff. quantities. In each case, N indicates a quantity specified by user. A. 1+½+⅓+¼...+¹/N=_____ B. 1²+2²+3²+... N²=______October 06, 2017Single number as a command line argumentOctober 02, 2017How to swap two numbers by using function September 29, 2017 Post a Comment
No comments