clogicprograms.blogspot.com
C Logic Programs: Radix Sort Algorithm
http://clogicprograms.blogspot.com/2010/07/radix-sort-algorithm.html
C Programs with Source Code. Thursday, July 29, 2010. C program to sort an array using radix sort LINKED LIST implementation*/. Void radix(int a[],int n,int m). Struct node * next;. NODE * ptr,*start,*prev;. NODE *front[10], *rear[10];. Int k=1,i,j,y,p;. Creating initial linked list*/. For(i=0;i n; i). Ptr=(NODE *)malloc(sizeof(NODE) ;. For(i=1;i =m; i). For(j=0;j 10; j). Placing elements into queues*/. Y=ptr- data/k %10;/*y is the digit*/. For(j=0;j 10; j). Else rear[p]- next=front[j];. Int a[100],n,i,m;.
clogicprograms.blogspot.com
C Logic Programs: Krushkal's Algorithm - 1 and 2
http://clogicprograms.blogspot.com/2010/07/krushkals-algorithm-1-and-2.html
C Programs with Source Code. Thursday, July 29, 2010. Krushkal's Algorithm - 1 and 2. Krushkals Algorithm - 2. C Program on Krushkals Algorithm */. Int graph[15][15],s[15],pathestimate[15],mark[15];. Int num of vertices,source,i,j,u,predecessor[15];. Int minimum(int a[],int m[],int k);. Void printpath(int,int,int[]);. Printf( nEnter The No. Of Vertices n);. M scanf(%d,&num of vertices);. If(num of vertices =0). Printf( nThis Is Meaningless n);. Printf( nEnter The Adjacent Matrix n);. Mark[j] = 0;. Void s...
clogicprograms.blogspot.com
C Logic Programs: July 2010
http://clogicprograms.blogspot.com/2010_07_01_archive.html
C Programs with Source Code. Thursday, July 29, 2010. Decimal To Roman Conversion. Decimal To Roman Conversion. Program in C for Decimal to Roman Number conversion */. Printf(Input a number (between 1-3000):);. While (e= 0 e 3000). Printf (ERROR: Invalid Input! Printf (Enter the number again:);. Scanf (%d,&e);. A = (e/1000)*1000;. B = ( e/100)%10)*100;. C = ( e/10)%10)*10;. D = ( e/1)%10)*1;. If (a = 1000). Else if (a = 2000). Else if (a = 3000). If (b = 100). Else if (b = 200). Else if (b = 300). D = (m...
venkatwebdesigner.blogspot.com
VenkaT Web Designer and Developer Hyderabad: March 2010
http://venkatwebdesigner.blogspot.com/2010_03_01_archive.html
VenkaT Web Designer and Developer Hyderabad. Saturday, March 27, 2010. Sorting functions in php sort(), asort() ksort() - difference between sort() asort() arsort() rsort(). Sorting functions in php sort(), asort() ksort(). Difference between sort() asort() arsort() rsort(). 160; $fruits = array(lemon, orange, banana, apple);. 160; echo The Original Array is: br ;. 160; foreach ($fruits as $key = $val). 160; {. 160; }. 160; echo br The Array After sort() is: br ;. 160; /*. 160; {. 160;...
venkatwebdesigner.blogspot.com
VenkaT Web Designer and Developer Hyderabad: What is the difference between DROP,DELETE and TRUNCATE.
http://venkatwebdesigner.blogspot.com/2010/07/what-is-difference-between-dropdelete.html
VenkaT Web Designer and Developer Hyderabad. Thursday, July 29, 2010. What is the difference between DROP,DELETE and TRUNCATE. What is difference between TRUNCATE and DELETE? TRUNCATE is a DDL command and cannot be rolled back. All of the memory space is released back to the server. DELETE is a DML command and can be rolled back. Both commands accomplish identical tasks (removing all data from a table), but TRUNCATE is much faster. TRUNCATE : You cant use WHERE clause. DELETE : You can use WHERE clause.
mylovemails.blogspot.com
Love , Inspirational, Funny Quotations: How to swap two variables, without using third variable ?
http://mylovemails.blogspot.com/2010/08/how-to-swap-two-variables-without-using.html
Love , Inspirational, Funny Quotations. Thursday, August 5, 2010. How to swap two variables, without using third variable? How to swap two variables, without using third variable? Hi this question was asked in my interview. Ans is : a=a b; b=a-b; a=a-b; Any other solution? Use xor to swap a = a b b= a b a= a b Ans is : a=a*b; b=a/b; a=a/b;. AilS to Y. O, . OW and . EeL the . JusT ClicK here to JoiN. Http:/ www.venkatmails.blogspot.com/. Http:/ www.venkatmails.blogspot.com/. New Proposed ISKON Temple.
clogicprograms.blogspot.com
C Logic Programs: Decimal To Roman Conversion
http://clogicprograms.blogspot.com/2010/07/decimal-to-roman-conversion.html
C Programs with Source Code. Thursday, July 29, 2010. Decimal To Roman Conversion. Decimal To Roman Conversion. Program in C for Decimal to Roman Number conversion */. Printf(Input a number (between 1-3000):);. While (e= 0 e 3000). Printf (ERROR: Invalid Input! Printf (Enter the number again:);. Scanf (%d,&e);. A = (e/1000)*1000;. B = ( e/100)%10)*100;. C = ( e/10)%10)*10;. D = ( e/1)%10)*1;. If (a = 1000). Else if (a = 2000). Else if (a = 3000). If (b = 100). Else if (b = 200). Else if (b = 300). Decima...
clogicprograms.blogspot.com
C Logic Programs: Program In C Language for Circle Through Three Points
http://clogicprograms.blogspot.com/2010/07/program-in-c-language-for-circle.html
C Programs with Source Code. Thursday, July 29, 2010. Program In C Language for Circle Through Three Points. Circle Through Three Points. Program In C Language for Circle Through Three Points. Double f,g,m,x1,x2,x3,y1,y2,y3;. Double c,d,h,e,k,r,s;. If(scanf(%lf %lf %lf %lf %lf %lf,&x1,&y1,&x2,&y2,&x3,&y3)= EOF). F = x3*x3-x3*x2-x1*x3 x1*x2 y3*y3-y3*y2-y1*y3 y1*y2; / formula. G = x3*y1-x3*y2 x1*y2-x1*y3 x2*y3-x2*y1;. M = (f/g);. C = (m*y2)-x2-x1-(m*y1); / formula. D = (m*x1)-y1-y2-(x2*m);. K = (d/2);.
SOCIAL ENGAGEMENT