EmbLogic's Blog

Author Archives: Bittoo .

char. driver

RCS file: create_scull.c,v Working file: create_scull.c head: 1.67 branch: locks: strict root: 1.67 access list: symbolic names: keyword substitution: kv total revisions: 67; selected revisions: 67 description: this is a scull creating file —————————- revision 1.67 locked by: root; date: … Continue reading

Posted in Character Driver | Leave a comment

How to install vlc media player in fedora 20

In fedora you find a bug of gpgcheck but here is a solution of it go to your terminal and become super user using [root@localhost ~]# su – now you have type following commands link no.1:- rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm link … Continue reading

Posted in Uncategorized | Leave a comment

merge sort

/*Merge sort is a divide and conquer sorting technique in which we divide big problems into small i.e. in this we divide a big array into small arrays and after sorting these arrays we merge it and after merging it … Continue reading

Posted in Uncategorized | Leave a comment

INSERTION_SORT

/* Insertion sorting is a sorting technique in which every element will be placed at their position in such a way that they will be sorted*/ #include int main () { int n,i,j,k,c; int a[30]; printf(“Enter size of array: \n”); … Continue reading

Posted in Uncategorized | Leave a comment

bubble sort with less complexity than O(n2)

#include main() { int n=10; int a[10]={89,22,20,2,11,39,32,21,87,98},swap=1,j,i,temp; printf(“this is a bubble sorting technique\n”); for(i=0;i<n&&swap==1;i++) { swap=0; for(j=0;j=a[j+1]) { swap=1; temp=a[j]; a[j]=a[j+1]; a[j+1]=temp; } else printf(“element sorted\n”); } } for(i=0;i<n;i++) { printf("a[%d]=%d\n",i,a[i]); } return 0; }

Posted in Data Structures with C | Leave a comment

mdc

description: this is the prototypes file —————————- revision 1.1 locked by: root; date: 2015/06/27 10:16:38; author: root; state: Exp; Initial revision ============================================================================= RCS file: low_store.c,v Working file: low_store.c head: 1.5 branch: locks: strict root: 1.5 access list: symbolic names: keyword … Continue reading

Posted in Uncategorized | Leave a comment

mdc

RCS file: compression.c,v Working file: compression.c head: 1.6 branch: locks: strict root: 1.6 access list: symbolic names: keyword substitution: kv total revisions: 6;    selected revisions: 6 description: this is the compression file which work to compress the code —————————- revision … Continue reading

Posted in Uncategorized | Leave a comment

pointer

difference b\w *a[5]&*(a[5])?    

Posted in Uncategorized | Leave a comment