<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://foss.coep.org.in/coepwiki/index.php?action=history&amp;feed=atom&amp;title=Data_Structures_%28Odd_Semester_2014%29</id>
	<title>Data Structures (Odd Semester 2014) - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://foss.coep.org.in/coepwiki/index.php?action=history&amp;feed=atom&amp;title=Data_Structures_%28Odd_Semester_2014%29"/>
	<link rel="alternate" type="text/html" href="https://foss.coep.org.in/coepwiki/index.php?title=Data_Structures_(Odd_Semester_2014)&amp;action=history"/>
	<updated>2026-04-03T19:04:58Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://foss.coep.org.in/coepwiki/index.php?title=Data_Structures_(Odd_Semester_2014)&amp;diff=14&amp;oldid=prev</id>
		<title>Wikiadmin: Created page with &quot;CT 205 Data Structures is offered to S.Y. B.Tech. Computer Engineering and I.T. students. It is a 4 credit course. The laboratory course CT 209 Data Structures Laboratory is a 2 credit course.  = Common Mistakes by Students in Assignments Submission =  == Writing the NUL character == The NUL character is written as &#039;\0&#039; and not as &#039;/0&#039;  == Copying pointers ==  When you say p = q, where p and q are both pointers, then p does not point to q, but p points to where q points....&quot;</title>
		<link rel="alternate" type="text/html" href="https://foss.coep.org.in/coepwiki/index.php?title=Data_Structures_(Odd_Semester_2014)&amp;diff=14&amp;oldid=prev"/>
		<updated>2025-08-12T13:29:54Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;CT 205 Data Structures is offered to S.Y. B.Tech. Computer Engineering and I.T. students. It is a 4 credit course. The laboratory course CT 209 Data Structures Laboratory is a 2 credit course.  = Common Mistakes by Students in Assignments Submission =  == Writing the NUL character == The NUL character is written as &amp;#039;\0&amp;#039; and not as &amp;#039;/0&amp;#039;  == Copying pointers ==  When you say p = q, where p and q are both pointers, then p does not point to q, but p points to where q points....&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;CT 205 Data Structures is offered to S.Y. B.Tech. Computer Engineering and I.T. students. It is a 4 credit course. The laboratory course CT 209 Data Structures Laboratory is a 2 credit course.&lt;br /&gt;
&lt;br /&gt;
= Common Mistakes by Students in Assignments Submission = &lt;br /&gt;
== Writing the NUL character ==&lt;br /&gt;
The NUL character is written as &amp;#039;\0&amp;#039; and not as &amp;#039;/0&amp;#039; &lt;br /&gt;
== Copying pointers == &lt;br /&gt;
When you say p = q, where p and q are both pointers, then p does not point to q, but p points to where q points.&lt;br /&gt;
E.g. &amp;lt;br /&amp;gt;&lt;br /&gt;
int a, *p, *q; &amp;lt;br/&amp;gt;&lt;br /&gt;
q = &amp;amp;a; &amp;lt;br/&amp;gt;&lt;br /&gt;
p = q; &amp;lt;br/&amp;gt;&lt;br /&gt;
means p points to a&lt;br /&gt;
== Forgetting use of &amp;amp; in scanf == &lt;br /&gt;
scanf expects the caller to pass the address of a variable in which scanf will store data. Students often forget to do it for non-array variables (for arrays, the name itself is the address)&lt;br /&gt;
For example: &amp;lt;br/&amp;gt;&lt;br /&gt;
int i; &amp;lt;br/&amp;gt;&lt;br /&gt;
scanf(&amp;quot;%d&amp;quot;, i) &amp;lt;br/&amp;gt;&lt;br /&gt;
instead of &amp;lt;br/&amp;gt;&lt;br /&gt;
scanf(&amp;quot;%d&amp;quot;, &amp;amp;i); &amp;lt;br/&amp;gt;&lt;br /&gt;
== Using O and Omega Notation in wrong place ==&lt;br /&gt;
The right way of using O and Omega notation is f(n) = O(g(n)) &amp;lt;br/&amp;gt;&lt;br /&gt;
Students often write it as  O(f(n)) = g(n) &amp;lt;br/&amp;gt; &amp;lt;br/&amp;gt;&lt;br /&gt;
Another common mistake is writing &amp;lt;br/&amp;gt;&lt;br /&gt;
O is n or O = n &amp;lt;br/&amp;gt;&lt;br /&gt;
The correct way of saying it is f(n) = O(n)&lt;/div&gt;</summary>
		<author><name>Wikiadmin</name></author>
	</entry>
</feed>