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.
goodmorningmyfriends.com
Devasundaram's Good Morning My Friends: September 2013
http://www.goodmorningmyfriends.com/2013_09_01_archive.html
Devasundaram's Good Morning My Friends. Good Morning My Friends. Sunday, September 29, 2013. The Old Wise Man! High in the Himalayan mountains lived a wise old man. Periodically, he ventured down into the local village to entertain the villagers with his special knowledge and talents. One of his skills was to "psychically" tell the villagers the contents in their pockets, boxes, or minds. The wise old man looked at the boy and said, "The bird is as you choose it.". Added in good measure,. Than walking...
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);.
clogicprograms.blogspot.com
C Logic Programs: Two Dimentional array in C
http://clogicprograms.blogspot.com/2010/07/two-dimentional-array-in-c.html
C Programs with Source Code. Thursday, July 29, 2010. Two Dimentional array in C. Two Dimentional array in C. C program to input and display a 2-d array*/. Int num[3][3],i,j;. For(i=0;i 3;i ). For(j=0;j 3;j ). For(i=0;i 3;i ). For(j=0;j 3;j ). Printf( n%d,num[i][j]);. Subscribe to: Post Comments (Atom). Venkat Mails, Fun Emails, Good Morning Messages, Daily Emails, Quotations, SMS, Cute Pictures, Sardar Jokes, Forwarded Messages, Collection of Moral stories. Powered by us.groups.yahoo.com. ISO - OSI Model.
SOCIAL ENGAGEMENT