<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2493278299216185857</id><updated>2011-11-27T15:41:43.570-08:00</updated><title type='text'>technoblog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://orkuttblogs.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2493278299216185857/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://orkuttblogs.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Orkutblog</name><uri>http://www.blogger.com/profile/04359968437385721752</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2493278299216185857.post-7190641130458403634</id><published>2009-06-01T14:05:00.000-07:00</published><updated>2009-06-01T14:11:44.004-07:00</updated><title type='text'>IMPORTANT NOTICE</title><content type='html'>&lt;a href="http://4.bp.blogspot.com/_cuiB4CUw-ic/SiRDJ5QSoLI/AAAAAAAAAEk/PXqqcFE3Y1M/s1600-h/page-under-construction2.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5342468895235285170" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; WIDTH: 296px; CURSOR: hand; HEIGHT: 262px" alt="" src="http://4.bp.blogspot.com/_cuiB4CUw-ic/SiRDJ5QSoLI/AAAAAAAAAEk/PXqqcFE3Y1M/s400/page-under-construction2.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;strong&gt;&lt;span style="font-size:180%;color:#ff0000;"&gt;the content of the posts does not have any value and may be incorrect.&lt;/span&gt;&lt;/strong&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2493278299216185857-7190641130458403634?l=orkuttblogs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orkuttblogs.blogspot.com/feeds/7190641130458403634/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://orkuttblogs.blogspot.com/2009/06/important-notice.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2493278299216185857/posts/default/7190641130458403634'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2493278299216185857/posts/default/7190641130458403634'/><link rel='alternate' type='text/html' href='http://orkuttblogs.blogspot.com/2009/06/important-notice.html' title='IMPORTANT NOTICE'/><author><name>Orkutblog</name><uri>http://www.blogger.com/profile/04359968437385721752</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_cuiB4CUw-ic/SiRDJ5QSoLI/AAAAAAAAAEk/PXqqcFE3Y1M/s72-c/page-under-construction2.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2493278299216185857.post-8737618880296470386</id><published>2009-05-21T11:37:00.001-07:00</published><updated>2009-05-21T11:37:56.069-07:00</updated><title type='text'>Matrix In java</title><content type='html'>#include&lt;conio.h&gt;#include&lt;stdio.h&gt;void main() { int a[5][5],b[5][5],c[5][5],i,j,k,sum=0,m,n,o,p; clrscr(); printf("\nEnter the row and column of first matrix"); scanf("%d %d",&amp;amp;m,&amp;amp;n); printf("\nEnter the row and column of second matrix"); scanf("%d %d",&amp;amp;o,&amp;amp;p); if(n!=o) { printf("Matrix mutiplication is not possible"); printf("\nColumn of first matrix must be same as row of second matrix"); } else { printf("\nEnter the First matrix-&gt;"); for(i=0;i "); for(i=0;i for(j=0;j scanf("%d",&amp;amp;b[i][j]); printf("\nThe First matrix is\n"); for(i=0;i { printf("\n"); for(j=0;j { printf("%d\t",a[i][j]); } } printf("\nThe Second matrix is\n"); for(i=0;i { printf("\n"); for(j=0;j { printf("%d\t",b[i][j]); } } for(i=0;i for(j=0;j c[i][j]=0; for(i=0;i { for(j=0;j { sum=0; for(k=0;k sum=sum+a[i][k]*b[k][j]; c[i][j]=sum; } } } printf("\nThe multiplication of two matrix is\n"); for(i=0;i { printf("\n"); for(j=0;j { printf("%d\t",c[i][j]); } } getch(); }&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2493278299216185857-8737618880296470386?l=orkuttblogs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orkuttblogs.blogspot.com/feeds/8737618880296470386/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://orkuttblogs.blogspot.com/2009/05/matrix-in-java.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2493278299216185857/posts/default/8737618880296470386'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2493278299216185857/posts/default/8737618880296470386'/><link rel='alternate' type='text/html' href='http://orkuttblogs.blogspot.com/2009/05/matrix-in-java.html' title='Matrix In java'/><author><name>Orkutblog</name><uri>http://www.blogger.com/profile/04359968437385721752</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2493278299216185857.post-9078246224474826302</id><published>2009-05-21T11:35:00.000-07:00</published><updated>2009-05-21T11:36:44.462-07:00</updated><title type='text'>Matrix Prgramming In C</title><content type='html'>#include&lt;conio.h&gt;#include&lt;stdio.h&gt;void main() { int a[5][5],b[5][5],c[5][5],i,j,k,sum=0,m,n,o,p; clrscr(); printf("\nEnter the row and column of first matrix"); scanf("%d %d",&amp;amp;m,&amp;amp;n); printf("\nEnter the row and column of second matrix"); scanf("%d %d",&amp;amp;o,&amp;amp;p); if(n!=o) { printf("Matrix mutiplication is not possible"); printf("\nColumn of first matrix must be same as row of second matrix"); } else { printf("\nEnter the First matrix-&gt;"); for(i=0;i "); for(i=0;i for(j=0;j scanf("%d",&amp;amp;b[i][j]); printf("\nThe First matrix is\n"); for(i=0;i { printf("\n"); for(j=0;j { printf("%d\t",a[i][j]); } } printf("\nThe Second matrix is\n"); for(i=0;i { printf("\n"); for(j=0;j { printf("%d\t",b[i][j]); } } for(i=0;i for(j=0;j c[i][j]=0; for(i=0;i { for(j=0;j { sum=0; for(k=0;k sum=sum+a[i][k]*b[k][j]; c[i][j]=sum; } } } printf("\nThe multiplication of two matrix is\n"); for(i=0;i { printf("\n"); for(j=0;j { printf("%d\t",c[i][j]); } } getch(); }&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2493278299216185857-9078246224474826302?l=orkuttblogs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://orkuttblogs.blogspot.com/feeds/9078246224474826302/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://orkuttblogs.blogspot.com/2009/05/include-include-fori0i-fori0i-forj0j.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2493278299216185857/posts/default/9078246224474826302'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2493278299216185857/posts/default/9078246224474826302'/><link rel='alternate' type='text/html' href='http://orkuttblogs.blogspot.com/2009/05/include-include-fori0i-fori0i-forj0j.html' title='Matrix Prgramming In C'/><author><name>Orkutblog</name><uri>http://www.blogger.com/profile/04359968437385721752</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
