<?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:blogger='http://schemas.google.com/blogger/2008' 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-4644594410160206201</id><updated>2024-09-06T19:06:47.621-07:00</updated><title type='text'>Computer Education</title><subtitle type='html'>Computers All The Way...</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://computerspy101.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default'/><link rel='alternate' type='text/html' href='http://computerspy101.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Vino00031</name><uri>http://www.blogger.com/profile/05732607564794204560</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4644594410160206201.post-5422610084044009553</id><published>2009-12-04T10:37:00.001-08:00</published><updated>2009-12-04T19:44:53.859-08:00</updated><title type='text'>A C++ Isosceles Triangle Program</title><content type='html'>&lt;span style=&quot;font-weight:bold;&quot;&gt;Isosceles &lt;a href=&quot;http://computerspy101.blogspot.com/2009/12/c-right-triangle-program.html&quot;&gt;Triangle&lt;/a&gt;:&lt;/span&gt;&lt;br /&gt; &lt;br /&gt;#include&amp;lt;stdio.h&amp;gt; &lt;br /&gt;#include&amp;lt;conio.h&amp;gt; &lt;br /&gt;int main() &lt;br /&gt;{ &lt;br /&gt;int cntro,cntra,cntri, height=0; &lt;br /&gt;printf(&amp;quot;Enter height of pyramid: &amp;quot;); &lt;br /&gt;scanf(&amp;quot;%i&amp;quot;,&amp;amp;height); &lt;br /&gt;for(cntro=1;cntro&amp;lt;=height;cntro++) { for(cntri=height;cntri&amp;gt;cntro;cntri–) &lt;br /&gt;printf(&amp;quot; &amp;quot;); &lt;br /&gt;for(cntra=1;cntra&amp;lt;=cntro;cntra++) &lt;br /&gt;printf(&amp;quot;* &amp;quot;); &lt;br /&gt;printf(&amp;quot;\n&amp;quot;); &lt;br /&gt;} &lt;br /&gt;getch(); &lt;br /&gt;return 0; &lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;OUTPUT:&lt;br /&gt;(A TRIANGLE OF ASTERISK(*))</content><link rel='replies' type='application/atom+xml' href='http://computerspy101.blogspot.com/feeds/5422610084044009553/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://computerspy101.blogspot.com/2009/12/c-isosceles-triangle-program.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/5422610084044009553'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/5422610084044009553'/><link rel='alternate' type='text/html' href='http://computerspy101.blogspot.com/2009/12/c-isosceles-triangle-program.html' title='A C++ Isosceles Triangle Program'/><author><name>Vino00031</name><uri>http://www.blogger.com/profile/05732607564794204560</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4644594410160206201.post-2972319079689536670</id><published>2009-12-04T10:37:00.000-08:00</published><updated>2009-12-04T19:29:15.590-08:00</updated><title type='text'>A C++ Right Triangle Program</title><content type='html'>&lt;span style=&quot;font-weight:bold;&quot;&gt;The Famous Right Triangle &lt;a href=&quot;http://computerspy101.blogspot.com/2009/12/temperature-conversion-program-in-c.html&quot;&gt;Program&lt;/a&gt;:&lt;/span&gt;&lt;br /&gt;#include&amp;lt;stdio.h&amp;gt; &lt;br /&gt;#include&amp;lt;conio.h&amp;gt; &lt;br /&gt;main() &lt;br /&gt;{ &lt;br /&gt;int height, counter, cntra; &lt;br /&gt;printf(&amp;quot;Enter height of triangle: &amp;quot;); &lt;br /&gt;scanf(&amp;quot;%i&amp;quot;, &amp;amp;height); &lt;br /&gt;for (counter=1; counter&amp;lt;=height; counter++) { for(cntra=1;cntra&amp;lt;=counter; cntra++) &lt;br /&gt;printf(&amp;quot;*&amp;quot;); &lt;br /&gt;printf(&amp;quot;\n&amp;quot;); &lt;br /&gt;} &lt;br /&gt;getch(); &lt;br /&gt;return 0; &lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;OUTPUT:&lt;br /&gt;*&lt;br /&gt;**&lt;br /&gt;***&lt;br /&gt;****</content><link rel='replies' type='application/atom+xml' href='http://computerspy101.blogspot.com/feeds/2972319079689536670/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://computerspy101.blogspot.com/2009/12/c-right-triangle-program.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/2972319079689536670'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/2972319079689536670'/><link rel='alternate' type='text/html' href='http://computerspy101.blogspot.com/2009/12/c-right-triangle-program.html' title='A C++ Right Triangle Program'/><author><name>Vino00031</name><uri>http://www.blogger.com/profile/05732607564794204560</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4644594410160206201.post-2338793907078143813</id><published>2009-12-04T10:36:00.000-08:00</published><updated>2009-12-04T19:30:15.105-08:00</updated><title type='text'>Temperature Conversion Program in C++</title><content type='html'>&lt;span style=&quot;font-weight:bold;&quot;&gt;A &lt;a href=&quot;http://computerspy101.blogspot.com/2009/12/c-exercise-solution_04.html&quot;&gt;C++ Program&lt;/a&gt; That converts Temperatures:&lt;/span&gt;&lt;br /&gt;#include&amp;lt;stdio.h&amp;gt; &lt;br /&gt;#include&amp;lt;conio.h&amp;gt; &lt;br /&gt; &lt;br /&gt;int main() &lt;br /&gt;{ &lt;br /&gt;float temp_fahrenheit, temp_celsius; &lt;br /&gt;char option=’ ‘; &lt;br /&gt;printf(&amp;quot;\n Choose type of conversion:&amp;quot;); &lt;br /&gt;printf(&amp;quot;\n\t[F]ahrenheit to Celsius&amp;quot;); &lt;br /&gt;printf(&amp;quot;\n\t[C]elsius to Fahrenheit&amp;quot;); &lt;br /&gt;printf(&amp;quot;\nEnter option: &amp;quot;); &lt;br /&gt;scanf(&amp;quot;%c&amp;quot;,&amp;amp;option); &lt;br /&gt; &lt;br /&gt;switch(option) &lt;br /&gt;{ &lt;br /&gt;case ‘F’: case ‘f’: &lt;br /&gt;printf(&amp;quot;Enter temperature value in Fahrenheit: &amp;quot;); &lt;br /&gt;scanf(&amp;quot;%f&amp;quot;,&amp;amp;temp_fahrenheit); &lt;br /&gt;temp_celsius = (temp_fahrenheit – 32) * 5/9; &lt;br /&gt;printf(&amp;quot;%.2f degrees Fahrenheit is equal to %.2f degrees Celsius&amp;quot;, temp_fahrenheit, temp_celsius); &lt;br /&gt;break; &lt;br /&gt;case ‘C’: case ‘c’: &lt;br /&gt;printf(&amp;quot;Enter temperature value in Celsius: &amp;quot;); &lt;br /&gt;scanf(&amp;quot;%f&amp;quot;,&amp;amp;temp_celsius); &lt;br /&gt;temp_fahrenheit = (temp_celsius * 9/5)+ 32; &lt;br /&gt;printf(&amp;quot;%.2Lf degrees Celsius is equal to %.2f degrees Fahrenheit&amp;quot;, temp_celsius, temp_fahrenheit); &lt;br /&gt;break; &lt;br /&gt;default: &lt;br /&gt;printf(&amp;quot;Unknown option selected.&amp;quot;); &lt;br /&gt;break; &lt;br /&gt;} &lt;br /&gt;printf(&amp;quot;\nExiting …&amp;quot;); &lt;br /&gt;getch(); &lt;br /&gt;return 0; &lt;br /&gt;}</content><link rel='replies' type='application/atom+xml' href='http://computerspy101.blogspot.com/feeds/2338793907078143813/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://computerspy101.blogspot.com/2009/12/temperature-conversion-program-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/2338793907078143813'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/2338793907078143813'/><link rel='alternate' type='text/html' href='http://computerspy101.blogspot.com/2009/12/temperature-conversion-program-in-c.html' title='Temperature Conversion Program in C++'/><author><name>Vino00031</name><uri>http://www.blogger.com/profile/05732607564794204560</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4644594410160206201.post-8262842527889573184</id><published>2009-12-04T09:46:00.000-08:00</published><updated>2009-12-04T19:31:19.877-08:00</updated><title type='text'>C++ Calendar</title><content type='html'>&lt;span style=&quot;font-weight:bold;&quot;&gt;A C Programming Exercise using &lt;a href=&quot;http://computerspy101.blogspot.com/2009/12/slow-loading-computer-make-my-pc-run.html&quot;&gt;Program Control&lt;/a&gt;&lt;br /&gt; Structures&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;#include&amp;lt;stdio.h&amp;gt; &lt;br /&gt;#include&amp;lt;conio.h&amp;gt; &lt;br /&gt;int main() &lt;br /&gt;{ &lt;br /&gt;unsigned int day=0, month=0, year=0, f_day=0, f_month=0, f_year=0; &lt;br /&gt;int invalid_input=0, invalid_date=0; &lt;br /&gt;char response=’y&#39;; &lt;br /&gt;while (response==’Y&#39;||response==’y&#39;) &lt;br /&gt;{ &lt;br /&gt;printf(&amp;quot;Enter date [dd mm yyyy]: &amp;quot;); &lt;br /&gt;scanf(&amp;quot;%i %i %i&amp;quot;, &amp;amp;day, &amp;amp;month, &amp;amp;year); &lt;br /&gt;if (day&amp;lt;1) &lt;br /&gt;invalid_input++; &lt;br /&gt;if (month&amp;lt;1 || month&amp;gt;12) &lt;br /&gt;invalid_input++; &lt;br /&gt;if (year&amp;lt;1) &lt;br /&gt;invalid_input++; &lt;br /&gt;switch (month) &lt;br /&gt;{ &lt;br /&gt;case 1: case 3: case 5: case 7: case 8: case 10: &lt;br /&gt;if (day&amp;gt;31) &lt;br /&gt;invalid_date++; &lt;br /&gt;else &lt;br /&gt;{ &lt;br /&gt;if(day==31) &lt;br /&gt;{ &lt;br /&gt;f_day=1; &lt;br /&gt;f_month=month+1; &lt;br /&gt;} &lt;br /&gt;else &lt;br /&gt;{ &lt;br /&gt;f_day=day+1; &lt;br /&gt;f_month=month; &lt;br /&gt;} &lt;br /&gt;} &lt;br /&gt;f_year=year; &lt;br /&gt;break; &lt;br /&gt;case 12: &lt;br /&gt;if (day&amp;gt;31) &lt;br /&gt;invalid_date++; &lt;br /&gt;else &lt;br /&gt;{ &lt;br /&gt;if(day==31) &lt;br /&gt;{ &lt;br /&gt;f_day=1; &lt;br /&gt;f_month=1; &lt;br /&gt;f_year=year+1; &lt;br /&gt;} &lt;br /&gt;else &lt;br /&gt;{ &lt;br /&gt;f_day=day+1; &lt;br /&gt;f_month=month; &lt;br /&gt;f_year=year; &lt;br /&gt;} &lt;br /&gt;} &lt;br /&gt;break; &lt;br /&gt;case 4: case 6: case 9: case 11: &lt;br /&gt;if (day&amp;gt;30) &lt;br /&gt;invalid_date++; &lt;br /&gt;else &lt;br /&gt;{ &lt;br /&gt;if(day==30) &lt;br /&gt;{ &lt;br /&gt;f_day=1; &lt;br /&gt;f_month=month+1; &lt;br /&gt;} &lt;br /&gt;else &lt;br /&gt;{ &lt;br /&gt;f_day=day+1; &lt;br /&gt;f_month=month; &lt;br /&gt;} &lt;br /&gt;} &lt;br /&gt;f_year=year; &lt;br /&gt;break; &lt;br /&gt;case 2: &lt;br /&gt;if(year%4==0) &lt;br /&gt;{ &lt;br /&gt;if (day&amp;gt;29) &lt;br /&gt;invalid_date++; &lt;br /&gt;else &lt;br /&gt;{ &lt;br /&gt;if(day==29) &lt;br /&gt;{ &lt;br /&gt;f_day=1; &lt;br /&gt;f_month=month+1; &lt;br /&gt;} &lt;br /&gt;else &lt;br /&gt;{ &lt;br /&gt;f_day=day+1; &lt;br /&gt;f_month=month; &lt;br /&gt;} &lt;br /&gt;} &lt;br /&gt;} &lt;br /&gt;else &lt;br /&gt;{ &lt;br /&gt;if (day&amp;gt;28) &lt;br /&gt;invalid_date++; &lt;br /&gt;else &lt;br /&gt;{ &lt;br /&gt;if(day==28) &lt;br /&gt;{ &lt;br /&gt;f_day=1; &lt;br /&gt;f_month=month+1; &lt;br /&gt;} &lt;br /&gt;else &lt;br /&gt;{ &lt;br /&gt;f_day=day+1; &lt;br /&gt;f_month=month; &lt;br /&gt;} &lt;br /&gt;} &lt;br /&gt;} &lt;br /&gt;f_year=year; &lt;br /&gt;break; &lt;br /&gt;} &lt;br /&gt;if (invalid_input&amp;gt;0) &lt;br /&gt;printf(&amp;quot;INVALID INPUT!!!!&amp;quot;); &lt;br /&gt;else if (invalid_date&amp;gt;0) &lt;br /&gt;printf(&amp;quot;INVALID DATE!!!!&amp;quot;); &lt;br /&gt;else &lt;br /&gt;{ &lt;br /&gt;printf(&amp;quot;Date following &amp;quot;); &lt;br /&gt;if (day&amp;lt;10) &lt;br /&gt;printf(&amp;quot;0&amp;quot;); &lt;br /&gt;printf(&amp;quot;%i:&amp;quot;,day); &lt;br /&gt;if (month&amp;lt;10) &lt;br /&gt;printf(&amp;quot;0&amp;quot;); &lt;br /&gt;printf(&amp;quot;%i:&amp;quot;,month); &lt;br /&gt;if (year&amp;lt;10) &lt;br /&gt;printf(&amp;quot;000&amp;quot;); &lt;br /&gt;if (year&amp;gt;10 &amp;amp;&amp;amp; year&amp;lt;100) &lt;br /&gt;printf(&amp;quot;00&amp;quot;); &lt;br /&gt;if (year&amp;gt;100 &amp;amp;&amp;amp; year&amp;lt;1000) &lt;br /&gt;printf(&amp;quot;0&amp;quot;); &lt;br /&gt;printf(&amp;quot;%i&amp;quot;,year); &lt;br /&gt;printf(&amp;quot; is &amp;quot;); &lt;br /&gt;if (f_day&amp;lt;10) &lt;br /&gt;printf(&amp;quot;0&amp;quot;); &lt;br /&gt;printf(&amp;quot;%i:&amp;quot;,f_day); &lt;br /&gt;if (f_month&amp;lt;10) &lt;br /&gt;printf(&amp;quot;0&amp;quot;); &lt;br /&gt;printf(&amp;quot;%i:&amp;quot;,f_month); &lt;br /&gt;if (f_year&amp;lt;10) &lt;br /&gt;printf(&amp;quot;000&amp;quot;); &lt;br /&gt;if (f_year&amp;gt;10 &amp;amp;&amp;amp; f_year&amp;lt;100) &lt;br /&gt;printf(&amp;quot;00&amp;quot;); &lt;br /&gt;if (f_year&amp;gt;100 &amp;amp;&amp;amp; f_year&amp;lt;1000) &lt;br /&gt;printf(&amp;quot;0&amp;quot;);&lt;br /&gt;printf(&amp;quot;%i.&amp;quot;,f_year); &lt;br /&gt;} &lt;br /&gt;printf(&amp;quot;\nRetry[Y/N]:&amp;quot;); &lt;br /&gt;scanf(&amp;quot;%s&amp;quot;,&amp;amp;response); &lt;br /&gt;fflush(stdin); &lt;br /&gt;} &lt;br /&gt;getch(); &lt;br /&gt;return 0; &lt;br /&gt;}</content><link rel='replies' type='application/atom+xml' href='http://computerspy101.blogspot.com/feeds/8262842527889573184/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://computerspy101.blogspot.com/2009/12/c-exercise-solution_04.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/8262842527889573184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/8262842527889573184'/><link rel='alternate' type='text/html' href='http://computerspy101.blogspot.com/2009/12/c-exercise-solution_04.html' title='C++ Calendar'/><author><name>Vino00031</name><uri>http://www.blogger.com/profile/05732607564794204560</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4644594410160206201.post-3317525391761411473</id><published>2009-12-03T07:34:00.000-08:00</published><updated>2009-12-04T19:32:39.822-08:00</updated><title type='text'>Slow Loading Computer - Make My PC Run Faster</title><content type='html'>A &lt;a href=&quot;http://computerspy101.blogspot.com/2009/12/ways-to-speed-up-your-computer-in-60.html&quot;&gt;slow computer&lt;/a&gt; is obviously a serious charge. Many people wonder: &quot;How can I make my PC run faster?&lt;br /&gt;&lt;br /&gt;Unfortunately, since it is a popular problem, each brother and their 2 cents, he is wiling to how to fix it.&lt;br /&gt;&lt;br /&gt;And since not a single appropriation for each system to work, he may find a real nightmare to know what to do. To help you cut through the chaos, here are 3 tips you can apply immediately.&lt;br /&gt;&lt;br /&gt;TIP # 1) eliminate trash &quot;&quot;&lt;br /&gt;&lt;br /&gt;Just get rid of words - the unnecessary programs that you do not need. Above all, focus on start-up &quot;automatic&quot; programs, which, if the computer does not start.&lt;br /&gt;&lt;br /&gt;Often when you download files, they have a default setting that they start to self-imposed system. All this consumes a huge amount of RAM.&lt;br /&gt;&lt;br /&gt;Either get rid of it completely, or ...&lt;br /&gt;&lt;br /&gt;Simply turn the function that starts automatically led. I recommend the latter if you have not eaten over the last 6 months.&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;TIP # 2) Get rid of &quot;temporary&quot; files&lt;br /&gt;&lt;br /&gt;It is one of the greatest criminals of the load &quot;slow computer. You can do yourself - but I recommend you make it free software to do it for you. This is not only easier, but the software is more comprehensive than you too.&lt;br /&gt;&lt;br /&gt;But remember ...&lt;br /&gt;&lt;br /&gt;With two quick tips above to your system, it is deleted after the to&#39;m files in the &quot;recycling&quot; and stop all of them to go critical.&lt;br /&gt;&lt;br /&gt;People often reject something - but he forgot to remove the trash. Therefore, the file can not eat memory.&lt;br /&gt;&lt;br /&gt;Tip # 3) Get rid of desktop icons &quot;&lt;br /&gt;&lt;br /&gt;This can also accelerate very good effect on your system, because the symbols will take a lot of resources on your computer.&lt;br /&gt;&lt;br /&gt;This is not only ideal for getting rid of precious disk space, but it is also good to be able to keep organized. I guarantee you, think more clearly and accomplish more if you are not over 25 years a screen full of symbols and staring at you.&lt;br /&gt;&lt;br /&gt;To answer the question above: &quot;I make my PC run faster? If you set measures, with the advice you receive from your computer &quot;slow loading is no longer a problem very quickly. In other words, now get to start.</content><link rel='replies' type='application/atom+xml' href='http://computerspy101.blogspot.com/feeds/3317525391761411473/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://computerspy101.blogspot.com/2009/12/slow-loading-computer-make-my-pc-run.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/3317525391761411473'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/3317525391761411473'/><link rel='alternate' type='text/html' href='http://computerspy101.blogspot.com/2009/12/slow-loading-computer-make-my-pc-run.html' title='Slow Loading Computer - Make My PC Run Faster'/><author><name>Vino00031</name><uri>http://www.blogger.com/profile/05732607564794204560</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4644594410160206201.post-1807928989587387621</id><published>2009-12-03T07:33:00.000-08:00</published><updated>2009-12-04T19:33:57.847-08:00</updated><title type='text'>Ways to Speed Up Your Computer in 60 Minutes Or Less</title><content type='html'>What are the 5 best ways to speed up your &lt;a href=&quot;http://computerspy101.blogspot.com/2009/12/divisors-of-number-in-c.html&quot;&gt;computer performance&lt;/a&gt;? There are great people who work and they are here.&lt;br /&gt;&lt;br /&gt;Step # 1) Get rid of &quot;automatic&quot; loading programs&lt;br /&gt;&lt;br /&gt;This could be the most important step of all. These things are killers. Believe it or not, many of these things you&#39;ve downloaded forget 2 years ago - and everything that starts automatically with your system.&lt;br /&gt;&lt;br /&gt;Obviously, most current programs ... be slower to boot the PC and eventually executed. I guarantee you that you&#39;re eliminating 90% of environmental impacts and none of the poor.&lt;br /&gt;&lt;br /&gt;Step # 2) Increase your RAM&lt;br /&gt;&lt;br /&gt;It is superfluous ... But by removing all unused files from your hard drive is one of the most effective methods to increase system performance. More memory is available, the proper functioning of all.&lt;br /&gt;&lt;br /&gt;But all my files are important!&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I doubt that. One would think they most need them, but I can say with certainty that you share what you will not be used during the last 6 months SHOCKED.&lt;br /&gt;&lt;br /&gt;Probably you&#39;ll probably only 10-20% of cases in hand. This is one of the 5 best ways to measure the speed of your computer on the planet.&lt;br /&gt;&lt;br /&gt;STEP # 3) &quot;Defragment&quot; your files&lt;br /&gt;&lt;br /&gt;This principle can organize your programs in a better system so that the computer can not find what he needs ... if she needs it.&lt;br /&gt;&lt;br /&gt;Over time, your programs can be confusing at the end ... and it is very difficult for the PC to find them. Defragment worries.&lt;br /&gt;&lt;br /&gt;STEP 4) Search VIRUS #&lt;br /&gt;&lt;br /&gt;Often, people find their system after it has infected too late. Not let this happen to you.&lt;br /&gt;The truth is that the slow system is often a warning sign that the early stages of a virus. If you take these things only get worse.&lt;br /&gt;&lt;br /&gt;Just load a respected anti-virus software and let it work its &quot;magic.&lt;br /&gt;&lt;br /&gt;Usually, they will send you a free scan ... But you pay for really getting rid of the virus. I suggest you bite the bullet and do it, it&#39;s a great mall of the cost and benefits for your system, it is worth.&lt;br /&gt;&lt;br /&gt;But be careful&lt;br /&gt;&lt;br /&gt;I strongly recommend you avoid, 100% free software, they are either totally useless, and probably outright scams. Why should we take time to develop it anyway?&lt;br /&gt;&lt;br /&gt;Often, these scams have to draw users in. .. inspection and when the antivirus software download you also get spyware &quot;side&quot; with him.&lt;br /&gt;&lt;br /&gt;Sometimes you will not see until your computer is shut down, or your identity has been stolen. This is why it is so important to stay with reputable companies.&lt;br /&gt;&lt;br /&gt;STEP # 5) Get rid of desktop icons &quot;&lt;br /&gt;&lt;br /&gt;It is so much for your peace of mind for your system. Remember: &quot;icons&quot; take himself a little space, even without the program.&lt;br /&gt;&lt;br /&gt;Obviously, getting rid of the program is important as well ... But even if you plan to keep some files, only the removal of symbols may remove flexibility. Implement these 5 ways to speed up your computer and you will see a big boost soon.</content><link rel='replies' type='application/atom+xml' href='http://computerspy101.blogspot.com/feeds/1807928989587387621/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://computerspy101.blogspot.com/2009/12/ways-to-speed-up-your-computer-in-60.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/1807928989587387621'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/1807928989587387621'/><link rel='alternate' type='text/html' href='http://computerspy101.blogspot.com/2009/12/ways-to-speed-up-your-computer-in-60.html' title='Ways to Speed Up Your Computer in 60 Minutes Or Less'/><author><name>Vino00031</name><uri>http://www.blogger.com/profile/05732607564794204560</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4644594410160206201.post-6331504572542590064</id><published>2009-12-01T09:20:00.001-08:00</published><updated>2009-12-05T08:01:16.321-08:00</updated><title type='text'>Divisors of a Number in C</title><content type='html'>&lt;span style=&quot;font-weight:bold;&quot;&gt;&lt;a href=&quot;http://computerspy101.blogspot.com/2009/12/c-isosceles-triangle-program.html&quot;&gt;A program in c++&lt;/a&gt; where the user inputs a whole number.If the number inputted is negative,it will display, “Input Error!!”. But if the number is positive,then it would display its divisors. &lt;/span&gt;&lt;br /&gt;#include&amp;lt;stdio.h&amp;gt; //preprocessor directive &lt;br /&gt;#include&amp;lt;conio.h&amp;gt; &lt;br /&gt;int main() &lt;br /&gt;{ &lt;br /&gt;long int numb=0,divisor=1; &lt;br /&gt;printf(&amp;quot;\nInput a whole number:&amp;quot;); &lt;br /&gt;scanf(&amp;quot;%li&amp;quot;,&amp;amp;numb); &lt;br /&gt;if(numb&amp;lt;=0) &lt;br /&gt;printf(&amp;quot;\nInvalid Input!!&amp;quot;); &lt;br /&gt;else &lt;br /&gt;{ &lt;br /&gt;printf(&amp;quot;The divisors of %li are &amp;quot;,numb); &lt;br /&gt;for(divisor=1; (divisor&amp;lt;=numb);divisor++) &lt;br /&gt;{ &lt;br /&gt;if (divisor==1) &lt;br /&gt;{ &lt;br /&gt;printf(&amp;quot;%li&amp;quot;,divisor); &lt;br /&gt;continue; &lt;br /&gt;} &lt;br /&gt;if(divisor==numb) &lt;br /&gt;printf(&amp;quot; and %li.&amp;quot;,divisor); &lt;br /&gt;else if(numb%divisor==0) &lt;br /&gt;printf(&amp;quot;, %li&amp;quot;,divisor); &lt;br /&gt;else &lt;br /&gt;continue; &lt;br /&gt;} &lt;br /&gt;} &lt;br /&gt;getch(); &lt;br /&gt;return 0; &lt;br /&gt;}</content><link rel='replies' type='application/atom+xml' href='http://computerspy101.blogspot.com/feeds/6331504572542590064/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://computerspy101.blogspot.com/2009/12/divisors-of-number-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/6331504572542590064'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/6331504572542590064'/><link rel='alternate' type='text/html' href='http://computerspy101.blogspot.com/2009/12/divisors-of-number-in-c.html' title='Divisors of a Number in C'/><author><name>Vino00031</name><uri>http://www.blogger.com/profile/05732607564794204560</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4644594410160206201.post-1211496110089553659</id><published>2009-12-01T09:20:00.000-08:00</published><updated>2009-12-04T09:20:49.684-08:00</updated><title type='text'>Calculator Program in C++</title><content type='html'>A Simple Calculator Program in C using functions&lt;br /&gt;&lt;br /&gt;#include&lt;stdio.h&gt; //preprocessor directive&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;&lt;br /&gt;long double add(long double, long double); //addition function prototype&lt;br /&gt;long double subtract(long double,long double); //subtraction function prototype&lt;br /&gt;long double multiply(long double,long double); //multiplication function prototype&lt;br /&gt;long double divide(long double,long double); //division function prototype&lt;br /&gt;&lt;br /&gt;int main()&lt;br /&gt;{&lt;br /&gt;long double first_number, second_number, output;&lt;br /&gt;char option, response=’Y&#39;;&lt;br /&gt;&lt;br /&gt;do&lt;br /&gt;{&lt;br /&gt;//clrscr();&lt;br /&gt;first_number=0.00, second_number=0.0, output=0.0;&lt;br /&gt;printf(&quot;\nEnter the value of the first number: &quot;);&lt;br /&gt;scanf(&quot;%Lf&quot;, &amp;first_number);&lt;br /&gt;printf(&quot;\nEnter the value of the second number: &quot;);&lt;br /&gt;scanf(&quot;%Lf&quot;, &amp;second_number);&lt;br /&gt;printf(&quot;\nArithmetic Operations&quot;);&lt;br /&gt;printf(&quot;\n\tAdd\n\tSubtract\n\tMultiply\n\tDivide\nEnter Option: &quot;);&lt;br /&gt;scanf(&quot;%s&quot;, &amp;option);&lt;br /&gt;fflush(stdin);&lt;br /&gt;&lt;br /&gt;switch(option)&lt;br /&gt;{&lt;br /&gt;case ‘a’: case ‘A’:&lt;br /&gt;output=add(first_number,second_number);&lt;br /&gt;printf(&quot;%Lg + %Lg = %Lg&quot;, first_number, second_number, output);&lt;br /&gt;break;&lt;br /&gt;&lt;br /&gt;case ’s’: case ‘S’:&lt;br /&gt;output=subtract(first_number,second_number);&lt;br /&gt;printf(&quot;%Lg – %Lg = %Lg&quot;, first_number, second_number, output);&lt;br /&gt;break;&lt;br /&gt;&lt;br /&gt;case ‘m’: case ‘M’:&lt;br /&gt;output=multiply(first_number,second_number);&lt;br /&gt;printf(&quot;%Lg * %Lg = %Lg&quot;, first_number, second_number, output);&lt;br /&gt;break;&lt;br /&gt;&lt;br /&gt;case ‘d’: case ‘D’:&lt;br /&gt;if (first_number==0.00 &amp;&amp;second_number==0.00)&lt;br /&gt;printf(&quot;\nError!!! Cannot Divide by O.&quot;);&lt;br /&gt;else if(second_number==0.00)&lt;br /&gt;printf(&quot;\nResult of function is undefined&quot;);&lt;br /&gt;else&lt;br /&gt;{&lt;br /&gt;output=divide(first_number,second_number);&lt;br /&gt;printf(&quot;%Lg / %Lg = %Lg&quot;, first_number, second_number,output);&lt;br /&gt;}&lt;br /&gt;break;&lt;br /&gt;&lt;br /&gt;default:&lt;br /&gt;printf(&quot;Unknown option entered&quot;);&lt;br /&gt;break;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;printf(&quot;\nRetry?[Y/N]: &quot;);&lt;br /&gt;scanf(&quot;%s&quot;, &amp;response);&lt;br /&gt;fflush(stdin);&lt;br /&gt;}while (response==’Y&#39;||response==’y&#39;);&lt;br /&gt;printf(&quot;Exiting…&quot;);&lt;br /&gt;getch();&lt;br /&gt;return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;long double add(long double a, long double b)&lt;br /&gt;{&lt;br /&gt;return a+b;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;long double subtract(long double a, long double b)&lt;br /&gt;{&lt;br /&gt;return a-b;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;long double multiply(long double a, long double b)&lt;br /&gt;{&lt;br /&gt;return a*b;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;long double divide(long double a, long double b)&lt;br /&gt;{&lt;br /&gt;return a/b;&lt;br /&gt;}</content><link rel='replies' type='application/atom+xml' href='http://computerspy101.blogspot.com/feeds/1211496110089553659/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://computerspy101.blogspot.com/2009/12/calculator-program-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/1211496110089553659'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4644594410160206201/posts/default/1211496110089553659'/><link rel='alternate' type='text/html' href='http://computerspy101.blogspot.com/2009/12/calculator-program-in-c.html' title='Calculator Program in C++'/><author><name>Vino00031</name><uri>http://www.blogger.com/profile/05732607564794204560</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>