Posts

Showing posts with the label GOOGLE

/*WAP TO SORT NUMBER */

/*WAP TO SORT NUMBER */ #include<stdio.h> #include<conio.h> void main() { int a[10]; inti,j,n,k; clrscr(); printf("enter no of elements"); scanf("%d",&n); for(i=0;i<n;i++) { printf("enter elements"); scanf("%d",&a[i]); } for(i=0;i<n-1;i++) { for(j=0;j<n-i-1;j++)   { if(a[j]>a[j+1])   {    k=a[j]; a[j]=a[j+1]; a[j+1]=k;   }   } } printf(" after sorting is \n"); for(i=0;i<n;i++)   { printf("%d",a[i]);   } getch(); } /***OUTPUT*** how many no5 enter a no1 2 3 7 6 no sorting is 12367 **************/

TEXT EDITORS FOR PROGRAMING (SUBLINE REVIEW)

Image
As a developer, there is always the need of finding the best tools for development purposes. It can be  text editors , a library to manage tasks, a framework to build your next project, etc. SUBLINE TEXT EDIT   SUBLINE Pros Sublime text is easy to use with excellent UI and UX. There are tons of sublime plugins available. The functionality can be improved easily, and customization is just one plugin installation away. Offers command palette for easy accessibility to snippets, settings and more. Offers multi-line editing and selection. Cons Sublime text is not free. Considering that equally capable free text editors are available in the market, anyone can opt for the alternative. Updates are not frequent as used to in the past. Loading time is higher compared to the Notepad++. The quality of plugins is questionable. SO IN THE END I  WOULD NOT PERSONALLY RECOMEND IT TO USERS BUT U COULD GIVE IT A TRY   I WOULD RATHER REC...