<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Unfixed Sys</title>
	<atom:link href="http://unfixedsys.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://unfixedsys.wordpress.com</link>
	<description>No limits of abstraction</description>
	<lastBuildDate>Thu, 18 Sep 2008 16:57:29 +0000</lastBuildDate>
	<language>pt</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='unfixedsys.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Unfixed Sys</title>
		<link>http://unfixedsys.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://unfixedsys.wordpress.com/osd.xml" title="Unfixed Sys" />
	<atom:link rel='hub' href='http://unfixedsys.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Um exemplo do que somos capazes&#8230;</title>
		<link>http://unfixedsys.wordpress.com/2008/09/18/um-exemplo-do-que-somos-capazes/</link>
		<comments>http://unfixedsys.wordpress.com/2008/09/18/um-exemplo-do-que-somos-capazes/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 16:57:29 +0000</pubDate>
		<dc:creator>unfixedsys</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[matriz]]></category>
		<category><![CDATA[multiplicação]]></category>
		<category><![CDATA[soma]]></category>

		<guid isPermaLink="false">http://unfixedsys.wordpress.com/?p=9</guid>
		<description><![CDATA[#include &#60;stdio.h&#62; #include &#60;conio.h&#62; int lina, cola, linb, colb; void lerdados(int *lina, int *cola, int *linb, int *colb) { printf(&#8220;\ncopie o codigo e seja um perdedor (Y)\nfalo ae&#8221; printf (&#8220;\n Digite o numero de linhas da matriz A: &#8220;); scanf(&#8220;%d&#8221;,&#38;(*lina)); printf (&#8220;\n Digite o numero de colunas da matriz A: &#8220;); scanf(&#8220;%d&#8221;,&#38;(*cola)); printf (&#8220;\n Digite [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unfixedsys.wordpress.com&amp;blog=4705092&amp;post=9&amp;subd=unfixedsys&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>#include &lt;stdio.h&gt;<br />
#include &lt;conio.h&gt;</p>
<p>int lina, cola, linb, colb;</p>
<p>void lerdados(int *lina, int *cola, int *linb, int *colb) {</p>
<p>printf(&#8220;\ncopie o codigo e seja um perdedor (Y)\nfalo ae&#8221;</p>
<p>printf (&#8220;\n Digite o numero de linhas da matriz A: &#8220;);<br />
scanf(&#8220;%d&#8221;,&amp;(*lina));<br />
printf (&#8220;\n Digite o numero de colunas da matriz A: &#8220;);<br />
scanf(&#8220;%d&#8221;,&amp;(*cola));<br />
printf (&#8220;\n Digite o numero de linhas da matriz B: &#8220;);<br />
scanf(&#8220;%d&#8221;,&amp;(*linb));<br />
printf (&#8220;\n Digite o numero de colunas da matriz B: &#8220;);<br />
scanf(&#8220;%d&#8221;,&amp;(*colb));<br />
}</p>
<p>void dadosmata(int ma[lina][cola], int lina, int cola){ // dados da matriz A<br />
int i, j;<br />
for (i=1; i&lt;=lina; i++){<br />
for (j=1; j&lt;=cola; j++){<br />
printf(&#8220;\n Digite o valor para a matriz A da linha %d coluna %d : &#8220;,i,j);<br />
scanf(&#8220;%d&#8221;, &amp;ma[i][j]);<br />
}<br />
}<br />
}</p>
<p>void dadosmatb(int mb[linb][colb], int linb, int colb){ //dados da matriz B<br />
int i, j, valor=0;<br />
for (i=1; i&lt;=linb; i++){<br />
for (j=1; j&lt;=colb; j++){<br />
printf(&#8220;\n Digite o valor para a matriz B da linha %d coluna %d : &#8220;,i,j);<br />
scanf(&#8220;%d&#8221;, &amp;valor);<br />
mb[i][j] = valor;<br />
}<br />
}<br />
}<br />
void multmat (int ma[lina][cola], int mb[linb][colb], int lina, int cola, int linb, int colb){ //multiplicação das matrizes<br />
int mc[lina][colb], i=1, j=1, k=1;<br />
for (i=1; i&lt;=lina; i++){<br />
for(j=1; j&lt;=colb;j++){<br />
mc[i][j]=0;<br />
for(k=1;k&lt;=cola; k++){<br />
mc[i][j] += ma[i][k]*mb[k][j];<br />
}<br />
printf(&#8220;\n matriz mc[%d][%d] = %d&#8221;,i,j,mc[i][j]);<br />
}<br />
}</p>
<p>}</p>
<p>int main(){<br />
lerdados(&amp;lina, &amp;cola, &amp;linb, &amp;colb);<br />
{<br />
int ma[lina][cola], mb[linb][colb];<br />
dadosmata(ma, lina, cola);<br />
dadosmatb(mb, linb, colb);<br />
if (cola == linb){<br />
multmat (ma, mb, lina, cola, linb, colb);<br />
getch();<br />
}else{<br />
printf(&#8220;\n Nao e possivel realizar a multiplicacao das matrizes \n O numero de linhas da matriz A deve ser igual ao numero de colunas da matriz B&#8221;);<br />
getch();<br />
}<br />
}<br />
return(0);<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unfixedsys.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unfixedsys.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unfixedsys.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unfixedsys.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/unfixedsys.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/unfixedsys.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/unfixedsys.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/unfixedsys.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unfixedsys.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unfixedsys.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unfixedsys.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unfixedsys.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unfixedsys.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unfixedsys.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unfixedsys.wordpress.com&amp;blog=4705092&amp;post=9&amp;subd=unfixedsys&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://unfixedsys.wordpress.com/2008/09/18/um-exemplo-do-que-somos-capazes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33321dbe08652c99064219606c7c0e72?s=96&#38;d=identicon" medium="image">
			<media:title type="html">unfixedsys</media:title>
		</media:content>
	</item>
		<item>
		<title>Ambição.</title>
		<link>http://unfixedsys.wordpress.com/2008/09/17/ambicao/</link>
		<comments>http://unfixedsys.wordpress.com/2008/09/17/ambicao/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 15:02:48 +0000</pubDate>
		<dc:creator>unfixedsys</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[MR]]></category>

		<guid isPermaLink="false">http://unfixedsys.wordpress.com/?p=6</guid>
		<description><![CDATA[Criar uma linguagem de programação não é nada fácil.Na verdade temos pouca idéia de como se faz mas, inventar alguma coisa por mais insignificante que seja é uma atitude que faz a diferença para você mesmo e consequentemente para outros, adquire-se muito conhecimento. Uma linguagem das mais simples propriamente desenvolvida seria uma realização.Tomamos como exemplo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unfixedsys.wordpress.com&amp;blog=4705092&amp;post=6&amp;subd=unfixedsys&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Criar uma linguagem de programação não é nada fácil.Na verdade temos pouca idéia de como se faz mas, inventar alguma coisa por mais insignificante que seja é uma atitude que faz a diferença para você mesmo e consequentemente para outros, adquire-se muito conhecimento.</p>
<p>Uma linguagem das mais simples propriamente desenvolvida seria uma realização.Tomamos como exemplo a linguagem Pascal, linguagem criada pelo professor Niklaus Wirth simplesmente para facilitar 0o ensino,  desde de 1971 ela vem sendo usada, e tanto o professor quanto a linguagem ficarão sempre na história da informática.</p>
<p>O intuito de criar essa linguagem é adquirir conhecimento, e fazer algo simples para qualquer um enteder bem como se programa e poder talvez sermos como o professor e sua linguagem, fazermos parte da história ou apenas termos a nossa história.</p>
<p>MR.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/unfixedsys.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/unfixedsys.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unfixedsys.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unfixedsys.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unfixedsys.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unfixedsys.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/unfixedsys.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/unfixedsys.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/unfixedsys.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/unfixedsys.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unfixedsys.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unfixedsys.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unfixedsys.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unfixedsys.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unfixedsys.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unfixedsys.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unfixedsys.wordpress.com&amp;blog=4705092&amp;post=6&amp;subd=unfixedsys&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://unfixedsys.wordpress.com/2008/09/17/ambicao/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33321dbe08652c99064219606c7c0e72?s=96&#38;d=identicon" medium="image">
			<media:title type="html">unfixedsys</media:title>
		</media:content>
	</item>
		<item>
		<title>Propósito</title>
		<link>http://unfixedsys.wordpress.com/2008/09/08/eins/</link>
		<comments>http://unfixedsys.wordpress.com/2008/09/08/eins/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 20:20:42 +0000</pubDate>
		<dc:creator>unfixedsys</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[beginning]]></category>
		<category><![CDATA[começo]]></category>
		<category><![CDATA[início]]></category>

		<guid isPermaLink="false">http://unfixedsys.wordpress.com/?p=4</guid>
		<description><![CDATA[Este blog foi criado com o intuito de propagar idéias de um determinado grupo de pseudo-programadores, com a idéia de criar inicialmente a própria linguagem de programação, denominando tal de projeto (a decidir) BLZ FLW!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unfixedsys.wordpress.com&amp;blog=4705092&amp;post=4&amp;subd=unfixedsys&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Este blog foi criado com o intuito de propagar idéias de um determinado grupo de pseudo-programadores, com a idéia de criar inicialmente a própria linguagem de programação, denominando tal de projeto (a decidir)</p>
<p>BLZ FLW!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/unfixedsys.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/unfixedsys.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/unfixedsys.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/unfixedsys.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/unfixedsys.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/unfixedsys.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/unfixedsys.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/unfixedsys.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/unfixedsys.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/unfixedsys.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/unfixedsys.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/unfixedsys.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/unfixedsys.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/unfixedsys.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/unfixedsys.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/unfixedsys.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=unfixedsys.wordpress.com&amp;blog=4705092&amp;post=4&amp;subd=unfixedsys&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://unfixedsys.wordpress.com/2008/09/08/eins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33321dbe08652c99064219606c7c0e72?s=96&#38;d=identicon" medium="image">
			<media:title type="html">unfixedsys</media:title>
		</media:content>
	</item>
	</channel>
</rss>
