<?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/"
	>

<channel>
	<title>host machine | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/host-machine/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Tue, 06 Sep 2011 13:04:00 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>Program to compute the word length of the host machine</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/simple/program-compute-word-length-host-machine/</link>
					<comments>https://studentprojects.in/software-development/c-tutorials/c/simple/program-compute-word-length-host-machine/#comments</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Tue, 06 Sep 2011 13:04:00 +0000</pubDate>
				<category><![CDATA[Simple programs]]></category>
		<category><![CDATA[host machine]]></category>
		<category><![CDATA[word length]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=2146</guid>

					<description><![CDATA[<p>Here is the program to compute the word length of the host machine. #include "stdio.h" #include "conio.h" void main() { int a,x; clrscr(); x=sizeof(a); printf("%d\n",sizeof(a)); if(x==2) { printf("Word length of host machine is 16 bits"); } else { printf("It is a 32 bit machine"); } getch(); }</p>
<p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c/simple/program-compute-word-length-host-machine/">Program to compute the word length of the host machine</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Here is the program to compute the word length of the host machine.</p>
<pre lang="c" escaped="true" line="1">
#include "stdio.h"
#include "conio.h"
void main()
{
 int a,x;
 clrscr();
 x=sizeof(a);
 printf("%d\n",sizeof(a));
 if(x==2)
 {
  printf("Word length of host machine is 16 bits");
 }
 else
 {
  printf("It is a 32 bit machine");
 }
 getch();
}
</pre><p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c/simple/program-compute-word-length-host-machine/">Program to compute the word length of the host machine</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/c-tutorials/c/simple/program-compute-word-length-host-machine/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
	</channel>
</rss>
