<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: what is Void Pointer?	</title>
	<atom:link href="https://studentprojects.in/software-development/c-tutorials/c-faq/void-pointer/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/c-tutorials/c-faq/void-pointer/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Tue, 28 Oct 2014 12:05:40 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: karumu		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-faq/void-pointer/comment-page-1/#comment-42837</link>

		<dc:creator><![CDATA[karumu]]></dc:creator>
		<pubDate>Tue, 28 Oct 2014 12:05:40 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=2609#comment-42837</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://studentprojects.in/software-development/c-tutorials/c-faq/void-pointer/comment-page-1/#comment-42834&quot;&gt;karumu&lt;/a&gt;.

aspecial type of pointer that can be pointed at objects of any data type]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://studentprojects.in/software-development/c-tutorials/c-faq/void-pointer/comment-page-1/#comment-42834">karumu</a>.</p>
<p>aspecial type of pointer that can be pointed at objects of any data type</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: karumu		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-faq/void-pointer/comment-page-1/#comment-42834</link>

		<dc:creator><![CDATA[karumu]]></dc:creator>
		<pubDate>Tue, 28 Oct 2014 12:02:06 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=2609#comment-42834</guid>

					<description><![CDATA[nice training]]></description>
			<content:encoded><![CDATA[<p>nice training</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: sailakshmi bhashyam		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-faq/void-pointer/comment-page-1/#comment-10436</link>

		<dc:creator><![CDATA[sailakshmi bhashyam]]></dc:creator>
		<pubDate>Mon, 10 Feb 2014 07:04:40 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=2609#comment-10436</guid>

					<description><![CDATA[#include
void main()
{
int i=5;
do
printf(&quot;in do&quot;);
while(i&#060;4);
}]]></description>
			<content:encoded><![CDATA[<p>#include<br />
void main()<br />
{<br />
int i=5;<br />
do<br />
printf(&#8220;in do&#8221;);<br />
while(i&lt;4);<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: piyush		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-faq/void-pointer/comment-page-1/#comment-10376</link>

		<dc:creator><![CDATA[piyush]]></dc:creator>
		<pubDate>Mon, 09 Dec 2013 16:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=2609#comment-10376</guid>

					<description><![CDATA[frends jahan tak maine is topic ko samjha hai wo ye hai ki generic pointer is also known as void pointer as we know ki har pointer ka ek data type hota hai but yahan hum koi specific data type ke saath pointer declare nai karte balki void is keyword which use in as data type at the time of generic/void pointer concept.....ye pointer vo hai jiski value yani uska data type kabhi bhi hum typecast karsakte hain by using

Ex: float *float_pointer; 
int *int_pointer;
void *void_pointer; 
. . . . . . . .
. . . . . . . .
void_pointer = float_pointer;
. . . . . . . . 
. . . . . . . . 
void_pointer = int_pointer;

A void pointer is generally used as function parameters, when the parameter or return type is unknown.]]></description>
			<content:encoded><![CDATA[<p>frends jahan tak maine is topic ko samjha hai wo ye hai ki generic pointer is also known as void pointer as we know ki har pointer ka ek data type hota hai but yahan hum koi specific data type ke saath pointer declare nai karte balki void is keyword which use in as data type at the time of generic/void pointer concept&#8230;..ye pointer vo hai jiski value yani uska data type kabhi bhi hum typecast karsakte hain by using</p>
<p>Ex: float *float_pointer;<br />
int *int_pointer;<br />
void *void_pointer;<br />
. . . . . . . .<br />
. . . . . . . .<br />
void_pointer = float_pointer;<br />
. . . . . . . .<br />
. . . . . . . .<br />
void_pointer = int_pointer;</p>
<p>A void pointer is generally used as function parameters, when the parameter or return type is unknown.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: nithya		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-faq/void-pointer/comment-page-1/#comment-9933</link>

		<dc:creator><![CDATA[nithya]]></dc:creator>
		<pubDate>Thu, 25 Jul 2013 15:52:33 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=2609#comment-9933</guid>

					<description><![CDATA[very well expaltion. thanks.]]></description>
			<content:encoded><![CDATA[<p>very well expaltion. thanks.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: resham		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-faq/void-pointer/comment-page-1/#comment-9882</link>

		<dc:creator><![CDATA[resham]]></dc:creator>
		<pubDate>Mon, 08 Jul 2013 17:50:10 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=2609#comment-9882</guid>

					<description><![CDATA[explanation given in very simple language.awesome description.thnx]]></description>
			<content:encoded><![CDATA[<p>explanation given in very simple language.awesome description.thnx</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sasi		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-faq/void-pointer/comment-page-1/#comment-9712</link>

		<dc:creator><![CDATA[Sasi]]></dc:creator>
		<pubDate>Wed, 17 Apr 2013 15:51:08 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=2609#comment-9712</guid>

					<description><![CDATA[Clearly understood the concept. Thank you.]]></description>
			<content:encoded><![CDATA[<p>Clearly understood the concept. Thank you.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mitul Patel (MCA)		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-faq/void-pointer/comment-page-1/#comment-9557</link>

		<dc:creator><![CDATA[Mitul Patel (MCA)]]></dc:creator>
		<pubDate>Fri, 01 Mar 2013 11:40:15 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=2609#comment-9557</guid>

					<description><![CDATA[Good material are produce by ur website. plz give us to better and better materials. thanks a lot]]></description>
			<content:encoded><![CDATA[<p>Good material are produce by ur website. plz give us to better and better materials. thanks a lot</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ashvin		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-faq/void-pointer/comment-page-1/#comment-9293</link>

		<dc:creator><![CDATA[ashvin]]></dc:creator>
		<pubDate>Fri, 07 Dec 2012 01:29:55 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=2609#comment-9293</guid>

					<description><![CDATA[nice material. thank you very much.]]></description>
			<content:encoded><![CDATA[<p>nice material. thank you very much.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
