<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Discussions &#38; Sparks &#187; Recent Posts</title>
<link>http://discussions.billionsparks.com/</link>
<description>A land of billion sparks</description>
<language>en</language>
<pubDate>Thu, 23 Feb 2012 00:49:53 +0000</pubDate>

<item>
<title>Spark on "What is Heap and Stack?"</title>
<link>http://discussions.billionsparks.com/topic/31#post-38</link>
<pubDate>Mon, 15 Nov 2010 06:24:23 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">38@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Here's a very good link explaining about heap and stack&#60;br /&#62;
&#60;a href=&#34;http://www.maxi-pedia.com/what+is+heap+and+stack&#34; rel=&#34;nofollow&#34;&#62;http://www.maxi-pedia.com/what+is+heap+and+stack&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "30 Free Programming eBooks and Tutorials"</title>
<link>http://discussions.billionsparks.com/topic/30#post-37</link>
<pubDate>Tue, 12 Oct 2010 16:39:52 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">37@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;&#60;strong&#62;Here's the list of 30 Free Programming eBooks:&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Lisp/Scheme:&#60;br /&#62;
How to Desing Programs&#60;br /&#62;
Interpreting Lisp (PDF, suggested by Gary Knott)&#60;br /&#62;
Let Over Lambda&#60;br /&#62;
On Lisp&#60;br /&#62;
Practical Common Lisp&#60;br /&#62;
Programming in Emacs Lisp&#60;br /&#62;
Programming Languages. Application and Interpretation (suggested by Alex Ott)&#60;br /&#62;
Structure and Interpretation of Computer Programs&#60;br /&#62;
Teach Yourself Scheme in Fixnum Days&#60;br /&#62;
Visual LISP Developer’s Bible (suggested by “skatterbrainz”)&#60;/p&#62;
&#60;p&#62;Ruby:&#60;br /&#62;
Data Structures and Algorithms with Object-Oriented Design Patterns in Ruby&#60;br /&#62;
Learn to Program&#60;br /&#62;
MacRuby: The Definitive Guide&#60;br /&#62;
Mr. Neighborly’s Humble Little Ruby Book (suggested by @tundal45)&#60;br /&#62;
Programming Ruby&#60;br /&#62;
Read Ruby 1.9&#60;br /&#62;
Ruby Best Practices&#60;br /&#62;
Ruby on Rails Tutorial Book (suggested by @tundal45)&#60;/p&#62;
&#60;p&#62;Javascript:&#60;br /&#62;
Building iPhone Apps with HTML, CSS, and JavaScript&#60;br /&#62;
Eloquent Javascript&#60;br /&#62;
jQuery Fundamentals&#60;br /&#62;
Mastering Node&#60;/p&#62;
&#60;p&#62;Haskell:&#60;br /&#62;
Learn You a Haskell for Great Good&#60;br /&#62;
Real World Haskell&#60;/p&#62;
&#60;p&#62;Erlang:&#60;br /&#62;
Concurrent Programming in Erlang&#60;br /&#62;
Learn You Some Erlang for Great Good&#60;/p&#62;
&#60;p&#62;Python:&#60;br /&#62;
Dive into Python&#60;br /&#62;
How to Think Like a Computer Scientist – Learning with Python&#60;/p&#62;
&#60;p&#62;Smalltalk:&#60;br /&#62;
Dynamic Web Development with Seaside&#60;br /&#62;
Pharo by Example (based on the next book in this list, suggested by Anonymous)&#60;br /&#62;
Squeak by Example&#60;/p&#62;
&#60;p&#62;Misc:&#60;br /&#62;
Algorithms&#60;br /&#62;
The Art of Assembly Language&#60;br /&#62;
Beginning Perl&#60;br /&#62;
Building Accessible Websites (suggested by Joe Clark)&#60;br /&#62;
The C Book&#60;br /&#62;
C# Yellow Book (suggested by Joe Wyatt)&#60;br /&#62;
Compiler Construction&#60;br /&#62;
Dive Into HTML 5 (suggested by @til)&#60;br /&#62;
Higher-Order Perl&#60;br /&#62;
The Implementation of Functional Programming Languages (suggested by “Def”)&#60;br /&#62;
An Introduction to R&#60;br /&#62;
Learn Prolog Now!&#60;br /&#62;
Objective-C 2.0 Essentials&#60;br /&#62;
Programming Scala&#60;/p&#62;
&#60;p&#62;You can find it here: &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://citizen428.net/archives/434&#34; rel=&#34;nofollow&#34;&#62;http://citizen428.net/archives/434&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Regular Expressions based pattern matching in a String"</title>
<link>http://discussions.billionsparks.com/topic/28#post-35</link>
<pubDate>Thu, 07 Oct 2010 08:46:16 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">35@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;This may not be the perfect solution but still a good one. Here's the code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
// function definition&#60;br /&#62;
BOOL isMatch(CHAR* str, CHAR* pattern, int&#38;amp; len);&#60;/p&#62;
&#60;p&#62;//  Handles '*' in the pattern&#60;br /&#62;
BOOL HandleAsterisk(CHAR* str, CHAR* pattern, int&#38;amp; len)&#60;br /&#62;
{&#60;br /&#62;
    if((*(pattern + 1) == '') &#124;&#124; (*str == ''))// &#124;&#124; (*(str + 1) == ''))&#60;br /&#62;
    {&#60;br /&#62;
        return TRUE;&#60;br /&#62;
    }&#60;br /&#62;
    else if(*(str + 1) == '')&#60;br /&#62;
    {&#60;br /&#62;
         len = len + 1;&#60;br /&#62;
         return TRUE;&#60;br /&#62;
    }&#60;br /&#62;
    if(*(str + 1) == *(pattern + 1))&#60;br /&#62;
    {&#60;br /&#62;
         len = len + 1;&#60;br /&#62;
         return isMatch((str + 1), (pattern + 1), len);&#60;br /&#62;
    }&#60;br /&#62;
    len = len + 1;&#60;br /&#62;
    return isMatch((str + 1), (pattern), len);&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// if pattern matches&#60;br /&#62;
BOOL isMatch(CHAR* str, CHAR* pattern, int&#38;amp; len)&#60;br /&#62;
{&#60;br /&#62;
    if(*str == '')&#60;br /&#62;
    {&#60;br /&#62;
        if(*pattern == '')&#60;br /&#62;
        {&#60;br /&#62;
            return TRUE;&#60;br /&#62;
        }&#60;br /&#62;
        else&#60;br /&#62;
        {&#60;br /&#62;
            return FALSE;&#60;br /&#62;
        }&#60;br /&#62;
    }&#60;br /&#62;
    else if(*pattern == '')&#60;br /&#62;
    {&#60;br /&#62;
        return TRUE;&#60;br /&#62;
    }&#60;/p&#62;
&#60;p&#62;    if(*pattern == '*')&#60;br /&#62;
    {&#60;br /&#62;
        len = len + 1 ;&#60;br /&#62;
        return HandleAsterisk(str + 1, pattern, len);&#60;br /&#62;
    }&#60;br /&#62;
    else if((*pattern == '?') &#124;&#124; (*pattern == *str))&#60;br /&#62;
    {&#60;br /&#62;
        len = len + 1;&#60;br /&#62;
        return isMatch(str + 1, pattern + 1, len);&#60;br /&#62;
    }&#60;br /&#62;
    return FALSE;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// pattern matching&#60;br /&#62;
void PatternMatching(CHAR* str, CHAR* pattern)&#60;br /&#62;
{&#60;br /&#62;
    int iLenStrLen = strlen(str);&#60;br /&#62;
    int iLenPattern = strlen(pattern);&#60;br /&#62;
    int count = 0;&#60;br /&#62;
    printf(&#34;Pattern: %s&#34;, pattern);&#60;br /&#62;
    for(int i = 0; i &#38;lt; iLenStrLen; i++)&#60;br /&#62;
    {&#60;br /&#62;
        int len = 0;&#60;br /&#62;
        if(isMatch((str + i), pattern, len))&#60;br /&#62;
        {&#60;br /&#62;
            count++;&#60;br /&#62;
            printf(&#34;\nMatch %d: Len %d. String found: &#34;, count, len);&#60;br /&#62;
            for(int j = 0; j &#38;lt; len; j++)&#60;br /&#62;
            {&#60;br /&#62;
                printf(&#34;%c&#34;, *(str + j + i));&#60;br /&#62;
            }&#60;br /&#62;
            printf(&#34;\nin String %s\n&#34;, str);&#60;br /&#62;
        }&#60;br /&#62;
    }&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// main function&#60;br /&#62;
int _tmain(int argc, _TCHAR* argv[])&#60;br /&#62;
{&#60;br /&#62;
    char *s = &#34;cabcdaaaxcdzd&#34;;&#60;br /&#62;
    char *p = &#34;c?a*d&#34;;&#60;br /&#62;
    PatternMatching(s, p);&#60;/p&#62;
&#60;p&#62;    return 0;&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Regular Expressions based pattern matching in a String"</title>
<link>http://discussions.billionsparks.com/topic/28#post-34</link>
<pubDate>Thu, 07 Oct 2010 08:40:00 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">34@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Question:&#60;/p&#62;
&#60;p&#62;Write a program to perform a regular expressions based pattern matching in a String.
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Here comes the Luna Script by Asana"</title>
<link>http://discussions.billionsparks.com/topic/27#post-33</link>
<pubDate>Tue, 28 Sep 2010 16:47:07 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">33@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Guys,&#60;/p&#62;
&#60;p&#62;Check the Luna Script video at:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.asana.com/luna&#34; rel=&#34;nofollow&#34;&#62;http://www.asana.com/luna&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Simply Awesome!!!&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "&#34;Can&#039;t We Talk?&#34; (condensed from: You Just Don&#039;t Understand) by Deborah Tannen"</title>
<link>http://discussions.billionsparks.com/topic/26#post-32</link>
<pubDate>Tue, 28 Sep 2010 16:28:17 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">32@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Worth Reading:&#60;/p&#62;
&#60;p&#62;&#34;Can't We Talk?&#34; (condensed from: You Just Don't Understand) by Deborah Tannen&#60;br /&#62;
&#60;a href=&#34;http://raysweb.net/poems/articles/tannen.html&#34; rel=&#34;nofollow&#34;&#62;http://raysweb.net/poems/articles/tannen.html&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "What is written about our universe in the Holy Book ?"</title>
<link>http://discussions.billionsparks.com/topic/25#post-31</link>
<pubDate>Mon, 27 Sep 2010 07:58:40 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">31@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Guys,&#60;/p&#62;
&#60;p&#62;I've found interesting article on SikhWiki (Wikipedia of Sikhism). So I thought to share it with you. It talks about what is written in the holy book of Sikhs (Guru Granth Sahib) about Universe. It's nice to know that whatever being discovered by NASA today was already been known to a few special people even hundreds of years back. Anyways, If  would like to read further check it out at:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.sikhiwiki.org/index.php/Guru_Granth_Sahib_on_the_Universe&#34; rel=&#34;nofollow&#34;&#62;http://www.sikhiwiki.org/index.php/Guru_Granth_Sahib_on_the_Universe&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Debate - .NET vs PHP: Top 10 .NET Myths Exposed"</title>
<link>http://discussions.billionsparks.com/topic/24#post-30</link>
<pubDate>Mon, 27 Sep 2010 05:19:22 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">30@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Guys,&#60;/p&#62;
&#60;p&#62;Check out the nice article about .Net vs PHP:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://articles.sitepoint.com/article/php-top-10-net-myths-exposed&#34; rel=&#34;nofollow&#34;&#62;http://articles.sitepoint.com/article/php-top-10-net-myths-exposed&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Working with Database using C# Articles"</title>
<link>http://discussions.billionsparks.com/topic/23#post-29</link>
<pubDate>Sat, 03 Jul 2010 00:54:54 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">29@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Working with Database using C# Articles&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://en.csharp-online.net/Database_Articles&#34; rel=&#34;nofollow&#34;&#62;http://en.csharp-online.net/Database_Articles&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Tutorial: ADO.net using C#"</title>
<link>http://discussions.billionsparks.com/topic/22#post-28</link>
<pubDate>Sat, 03 Jul 2010 00:51:56 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">28@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;ADO.net Tutorial using C#&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.csharp-station.com/tutorials/adodotnet/lesson01.aspx&#34; rel=&#34;nofollow&#34;&#62;http://www.csharp-station.com/tutorials/adodotnet/lesson01.aspx&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Working with Data and Databases using C#"</title>
<link>http://discussions.billionsparks.com/topic/21#post-27</link>
<pubDate>Sat, 03 Jul 2010 00:50:07 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">27@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Database Articles&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://en.csharp-online.net/Database_Articles&#34; rel=&#34;nofollow&#34;&#62;http://en.csharp-online.net/Database_Articles&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Working with Data and Databases using C#"</title>
<link>http://discussions.billionsparks.com/topic/21#post-26</link>
<pubDate>Sat, 03 Jul 2010 00:49:45 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">26@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Working with Data - Databases&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://en.csharp-online.net/Working_with_Data%E2%80%94Databases&#34; rel=&#34;nofollow&#34;&#62;http://en.csharp-online.net/Working_with_Data%E2%80%94Databases&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "100+ C# Resources and Links"</title>
<link>http://discussions.billionsparks.com/topic/20#post-25</link>
<pubDate>Fri, 28 May 2010 11:58:36 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">25@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Here's the list of 100+ C# Resources and links to C# tutorials, e-books, articles, video tutorials and much more -&#60;/p&#62;
&#60;ol&#62;
&#60;li&#62;&#60;strong&#62;C# FAQ&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://blogs.msdn.com/csharpfaq/&#34; rel=&#34;nofollow&#34;&#62;http://blogs.msdn.com/csharpfaq/&#60;/a&#62;&#60;br /&#62;
Microsoft C# FAQ Blog - maintained by the Microsoft C# Team and C# MVPs.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;BOO - Differences with Csharp&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://boo.codehaus.org/Differences+with+Csharp&#34; rel=&#34;nofollow&#34;&#62;http://boo.codehaus.org/Differences+with+Csharp&#60;/a&#62;&#60;br /&#62;
Comparison between the BOO and C# languages
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;AlienPicks.com&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://c.alienpicks.com/&#34; rel=&#34;nofollow&#34;&#62;http://c.alienpicks.com/&#60;/a&#62;&#60;br /&#62;
Free C# Downloads
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;About.com&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://cplus.about.com/od/introductiontoprogrammin&#34; rel=&#34;nofollow&#34;&#62;http://cplus.about.com/od/introductiontoprogrammin&#60;/a&#62;&#60;br /&#62;
C# for Beginners
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Csharp-Source.Net&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://csharp-source.net/&#34; rel=&#34;nofollow&#34;&#62;http://csharp-source.net/&#60;/a&#62;&#60;br /&#62;
Open source software in C#.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# Meetup&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://csharp.meetup.com/&#34; rel=&#34;nofollow&#34;&#62;http://csharp.meetup.com/&#60;/a&#62;&#60;br /&#62;
Listing of world-wide C# meetup groups.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;net-tutorials.com&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://csharp.net-tutorials.com/&#34; rel=&#34;nofollow&#34;&#62;http://csharp.net-tutorials.com/&#60;/a&#62;&#60;br /&#62;
C# Tutorial
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# Computing&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://csharpcomputing.com/index.htm&#34; rel=&#34;nofollow&#34;&#62;http://csharpcomputing.com/index.htm&#60;/a&#62;&#60;br /&#62;
Offers a C# Tutorial and other info
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;David Hayden&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://davidhayden.com/blog/dave/category/12.aspx&#34; rel=&#34;nofollow&#34;&#62;http://davidhayden.com/blog/dave/category/12.aspx&#60;/a&#62;&#60;br /&#62;
C# Articles and Web log&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;DevCentral&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://devcentral.iftech.com/articles/CSharp/default.php&#34; rel=&#34;nofollow&#34;&#62;http://devcentral.iftech.com/articles/CSharp/default.php&#60;/a&#62;&#60;br /&#62;
C# Tutorials
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;DotNetSlackers&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://dotnetslackers.com/CSharp/re-default.aspx&#34; rel=&#34;nofollow&#34;&#62;http://dotnetslackers.com/CSharp/re-default.aspx&#60;/a&#62;&#60;br /&#62;
C# Articles
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Wikipedia &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://en.wikipedia.org/wiki/C_Sharp_programming_language&#34; rel=&#34;nofollow&#34;&#62;http://en.wikipedia.org/wiki/C_Sharp_programming_language&#60;/a&#62;&#60;br /&#62;
Editable on-line encyclopedia - C# page
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;A Comparative Overview of C# &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://genamics.com/developer/csharp_comparative.htm&#34; rel=&#34;nofollow&#34;&#62;http://genamics.com/developer/csharp_comparative.htm&#60;/a&#62;&#60;br /&#62;
This article focuses on the new ways of programming C# offers, and how it intends to improve upon its two closest neighbors, Java and C++, by Ben Albahari
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Mandelbrot and Julia Image Programming in C# &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://home.comcast.net/~twierenga/mandelbrot/mandelbrot.html&#34; rel=&#34;nofollow&#34;&#62;http://home.comcast.net/~twierenga/mandelbrot/mandelbrot.html&#60;/a&#62;&#60;br /&#62;
The Place to Learn Windows Forms and Graphics Programming in C# for Beginning and Intermediate Programmers
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Master C# &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://learncsharp.cjb.net/&#34; rel=&#34;nofollow&#34;&#62;http://learncsharp.cjb.net/&#60;/a&#62;&#60;br /&#62;
C# Tutorials and Source Code
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Pocket C# &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://mifki.ru/pcsharp/&#34; rel=&#34;nofollow&#34;&#62;http://mifki.ru/pcsharp/&#60;/a&#62;&#60;br /&#62;
Pocket C# is port of C# compiler from DotGNU project to Windows CE. DotGNU contains open-source runtime, compiler, tools and many other things to make free cross-platform .NET environment.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# Samples &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cscon/html/vclrfcodeaddingitemstolistcontrolvisualc.asp&#34; rel=&#34;nofollow&#34;&#62;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cscon/html/vclrfcodeaddingitemstolistcontrolvisualc.asp&#60;/a&#62;&#60;br /&#62;
Resource for multiple programming samples written in C#.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;The C# Design Process: A Conversation with Anders Hejlsberg &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://msdn.microsoft.com/vcsharp/homepageheadlines/hejlsberg/default.aspx&#34; rel=&#34;nofollow&#34;&#62;http://msdn.microsoft.com/vcsharp/homepageheadlines/hejlsberg/default.aspx&#60;/a&#62;&#60;br /&#62;
After 13 years with Borland, Hejlsberg joined Microsoft in 1996, where he initially worked as an architect of Visual J++ and the Windows Foundation Classes (WFC). Then, Hejlsberg was chief designer of C# and a key participant in the creation of the Microsoft .NET Framework. Today, he leads the ongoing development of the C# programming language. On July 30, 2003, Bruce Eckel, author of Thinking in C++ and Thinking in Java, and Bill Venners, editor-in-chief of Artima.com, met with Anders Hejlsberg in his office at Microsoft. Check out the entire eight-part interview here, or follow the links to find each individual section.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# Team Page &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://msdn.microsoft.com/vcsharp/team/default.aspx&#34; rel=&#34;nofollow&#34;&#62;http://msdn.microsoft.com/vcsharp/team/default.aspx&#60;/a&#62;&#60;br /&#62;
C# page at GotDotNet
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;The C# Language &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://msdn2.microsoft.com/en-us/vcsharp/aa336809&#34; rel=&#34;nofollow&#34;&#62;http://msdn2.microsoft.com/en-us/vcsharp/aa336809&#60;/a&#62;.&#60;br /&#62;
MSDN Resource for C# Language introduction and tut
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;MSDN Visual C# Developer Center &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://msdn2.microsoft.com/en-us/vcsharp/default.aspx&#34; rel=&#34;nofollow&#34;&#62;http://msdn2.microsoft.com/en-us/vcsharp/default.aspx&#60;/a&#62;&#60;br /&#62;
Microsoft's developer site, dedicated to the C# Pr
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# Evaluation &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://one.cs.washington.edu/csharp/&#34; rel=&#34;nofollow&#34;&#62;http://one.cs.washington.edu/csharp/&#60;/a&#62;&#60;br /&#62;
one.world project at University of Washington evaluates C#
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# Code Examples &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://phoenix.liu.edu/~mdevi/&#34; rel=&#34;nofollow&#34;&#62;http://phoenix.liu.edu/~mdevi/&#60;/a&#62;&#60;br /&#62;
Course examples from Long Island University
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Generics for C# and .NET CLR &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://research.microsoft.com/projects/clrgen/&#34; rel=&#34;nofollow&#34;&#62;http://research.microsoft.com/projects/clrgen/&#60;/a&#62;&#60;br /&#62;
Microsoft Research work on adding generics (templates) to C#
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;SharpCreativity.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://sharpcreativity.com/&#34; rel=&#34;nofollow&#34;&#62;http://sharpcreativity.com/&#60;/a&#62;&#60;br /&#62;
C# site with tutorials and resources for beginners.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# Online.NET &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://wiki.csharp-online.net/&#34; rel=&#34;nofollow&#34;&#62;http://wiki.csharp-online.net/&#60;/a&#62;&#60;br /&#62;
C# Online.NET! (CSharp-Online.NET) lets you learn the C# language, research an API, or find a helpful code snippet. There is something here for C# programmers of all experience levels.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C#/Java Comparison &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.25hoursaday.com/CsharpVsJava.html&#34; rel=&#34;nofollow&#34;&#62;http://www.25hoursaday.com/CsharpVsJava.html&#60;/a&#62;&#60;br /&#62;
C# Articles - A COMPARISON OF MICROSOFT'S C# PROGRAMMING LANGUAGE TO SUN MICROSYSTEMS' JAVA PROGRAMMING LANGUAGE, by Dare Obasanjo
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;4GuysFromRolla.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.4guysfromrolla.com/webtech/LearnMore/cs&#34; rel=&#34;nofollow&#34;&#62;http://www.4guysfromrolla.com/webtech/LearnMore/cs&#60;/a&#62;&#60;br /&#62;
C# Resources Page
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;@ewnet &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.aewnet.com/root/dotnet/csharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.aewnet.com/root/dotnet/csharp/&#60;/a&#62;&#60;br /&#62;
C# Resources
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# FAQ for C++ Programmers &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.andymcm.com/csharpfaq.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.andymcm.com/csharpfaq.htm&#60;/a&#62;&#60;br /&#62;
Andy McMullen C# FAQ for C++ Programmers
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Dissecting a C# Application &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.apress.com/free/index.html&#34; rel=&#34;nofollow&#34;&#62;http://www.apress.com/free/index.html&#60;/a&#62;&#60;br /&#62;
Free e-book - Learn advanced .NET programming techniques by getting an insiders look at a complete application!
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;ASPWarp C# Links &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.aspwarp.com/librarydex.aspx?dex=CSHARP&#34; rel=&#34;nofollow&#34;&#62;http://www.aspwarp.com/librarydex.aspx?dex=CSHARP&#60;/a&#62;&#60;br /&#62;
C# Links
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;BlinkList &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.blinklist.com/tag/c%23/&#34; rel=&#34;nofollow&#34;&#62;http://www.blinklist.com/tag/c%23/&#60;/a&#62;&#60;br /&#62;
C# Links
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;BrainBell.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.brainbell.com/tutors/C_Sharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.brainbell.com/tutors/C_Sharp/&#60;/a&#62;&#60;br /&#62;
Free Tutorials
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Data Structures and Algorithms with Object-Oriented Design Patterns in C# &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.brpreiss.com/books/opus6/html/book.html&#34; rel=&#34;nofollow&#34;&#62;http://www.brpreiss.com/books/opus6/html/book.html&#60;/a&#62;&#60;br /&#62;
Nice resource for C# data structures.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Builder.au &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.builderau.com.au/program/csharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.builderau.com.au/program/csharp/&#60;/a&#62;&#60;br /&#62;
C# Articles
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Cetus Links &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.cetus-links.org/oo_csharp.html&#34; rel=&#34;nofollow&#34;&#62;http://www.cetus-links.org/oo_csharp.html&#60;/a&#62;&#60;br /&#62;
C# .NET page with numerous links to C# resources.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;CIOL &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.ciol.com/content/technology/csharptutor/&#34; rel=&#34;nofollow&#34;&#62;http://www.ciol.com/content/technology/csharptutor/&#60;/a&#62;&#60;br /&#62;
C# Tutorials
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Code Beach &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.codebeach.com/index.asp?TabID=1&#38;amp;Categor&#34; rel=&#34;nofollow&#34;&#62;http://www.codebeach.com/index.asp?TabID=1&#38;amp;Categor&#60;/a&#62;&#60;br /&#62;
C# Source Code
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;CodeGuru.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.codeguru.com/csharp/csharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.codeguru.com/csharp/csharp/&#60;/a&#62;&#60;br /&#62;
The #1 Developer Site - C# Articles
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;The Code Project &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.codeproject.com/csharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.codeproject.com/csharp/&#60;/a&#62;&#60;br /&#62;
Free C# Source Code.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;CoderSource.NET &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.codersource.net/codersource_dot_net.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.codersource.net/codersource_dot_net.htm&#60;/a&#62;&#60;br /&#62;
C# Articles
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C Programming &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.cprogramming.com/cgi-bin/cdir/Cdirectory.cgi?action=Category&#38;amp;CID=9&#38;amp;Page=2&#34; rel=&#34;nofollow&#34;&#62;http://www.cprogramming.com/cgi-bin/cdir/Cdirectory.cgi?action=Category&#38;amp;CID=9&#38;amp;Page=2&#60;/a&#62;&#60;br /&#62;
C# Resources
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# Home &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.csharp-home.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.csharp-home.com/&#60;/a&#62;&#60;br /&#62;
C# Tutorials and Code samples, FAQs, Free C# Exams, Forums, Contests and more...
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Borland C#Builder Developer Resources &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.csharpbuilder.info&#34; rel=&#34;nofollow&#34;&#62;http://www.csharpbuilder.info&#60;/a&#62;&#60;br /&#62;
Resources for Borland C#Builder for .NET.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# FAQ &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.csharpfaq.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.csharpfaq.com/&#60;/a&#62;&#60;br /&#62;
FAQ by Anand Narayanaswamy
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;CSharpFriends.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.csharpfriends.com&#34; rel=&#34;nofollow&#34;&#62;http://www.csharpfriends.com&#60;/a&#62;&#60;br /&#62;
Worlds Greatest C# Community
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# Help &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.csharphelp.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.csharphelp.com/&#60;/a&#62;&#60;br /&#62;
C Sharp help for C# Developers
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# Warehouse &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.csharpwarehouse.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.csharpwarehouse.com/&#60;/a&#62;&#60;br /&#62;
C# Site with many links and resources.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Deitel &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.deitel.com/ResourceCenters/Programming/&#34; rel=&#34;nofollow&#34;&#62;http://www.deitel.com/ResourceCenters/Programming/&#60;/a&#62;&#60;br /&#62;
C# Programming Resource Center
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;devArticles &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.devarticles.com/c/b/C-Sharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.devarticles.com/c/b/C-Sharp/&#60;/a&#62;&#60;br /&#62;
C# Articles
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;DevASP &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.devasp.net/net/search/default.asp?c_id=248&#34; rel=&#34;nofollow&#34;&#62;http://www.devasp.net/net/search/default.asp?c_id=248&#60;/a&#62;&#60;br /&#62;
Directory of C# Resources
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;DevelopersDex.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.developersdex.com/csharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.developersdex.com/csharp/&#60;/a&#62;&#60;br /&#62;
C# Resource Index Page
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;development.no &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.development.no/resources/category.asp?main=lang&#38;amp;category=3&#34; rel=&#34;nofollow&#34;&#62;http://www.development.no/resources/category.asp?main=lang&#38;amp;category=3&#60;/a&#62;&#60;br /&#62;
C# Resources
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;DevX &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.devx.com/dotnet/Door/10584&#34; rel=&#34;nofollow&#34;&#62;http://www.devx.com/dotnet/Door/10584&#60;/a&#62;&#60;br /&#62;
More C# Articles
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Richard Baldwin &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.dickbaldwin.com/tocCsharp.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.dickbaldwin.com/tocCsharp.htm&#60;/a&#62;&#60;br /&#62;
C# Tutorial
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Generic C# &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.dina.dk/~sestoft/gcsharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.dina.dk/~sestoft/gcsharp/&#60;/a&#62;&#60;br /&#62;
Generic C# is an extension of the C# programming language with generic types and methods. Generic C# was developed and implemented by Don Syme and Andrew Kennedy at Microsoft Research, Cambridge UK, who also implemented the high-tech support for generics in the Microsoft Common Language Runtime (CLR).
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;DotNet4All.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.dotnet4all.com/ShowResourceCat.aspx?Cat=13&#34; rel=&#34;nofollow&#34;&#62;http://www.dotnet4all.com/ShowResourceCat.aspx?Cat=13&#60;/a&#62;&#60;br /&#62;
C# Links
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C#.NET Fun &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.dotnetfun.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.dotnetfun.com/&#60;/a&#62;&#60;br /&#62;
C# Articles
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;.NET on Web &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.dotnetonweb.com/category/dot-net-tutorials/c-sharp-tutorials/&#34; rel=&#34;nofollow&#34;&#62;http://www.dotnetonweb.com/category/dot-net-tutorials/c-sharp-tutorials/&#60;/a&#62;&#60;br /&#62;
Visual C# Links
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Dr. Bobs C# Visions &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.drbob42.net/csharp/index.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.drbob42.net/csharp/index.htm&#60;/a&#62;&#60;br /&#62;
This is a section of Dr. Bobs site devoted to C#.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;From C++ to C# &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.dur.ac.uk/barry.cornelius/papers/from.cpp.to.csharp/master.pdf&#34; rel=&#34;nofollow&#34;&#62;http://www.dur.ac.uk/barry.cornelius/papers/from.cpp.to.csharp/master.pdf&#60;/a&#62;&#60;br /&#62;
Paper by Barry Cornelius IT Service, University of Durham, Durham, UK
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Easy C# &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.easycsharp.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.easycsharp.com/&#60;/a&#62;&#60;br /&#62;
C# Resources
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Learn C# - The Easy Way &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.ehhco.com/csharp/resources.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.ehhco.com/csharp/resources.htm&#60;/a&#62;&#60;br /&#62;
C# Links
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Exforsys Inc. &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.exforsys.com/tutorials/csharp.html&#34; rel=&#34;nofollow&#34;&#62;http://www.exforsys.com/tutorials/csharp.html&#60;/a&#62;&#60;br /&#62;
C# Tutorials
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;fincher.org &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.fincher.org/tips/Languages/csharp.shtml&#34; rel=&#34;nofollow&#34;&#62;http://www.fincher.org/tips/Languages/csharp.shtml&#60;/a&#62;&#60;br /&#62;
Code-based C# Tutorial
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;FreeProgrammingResources.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.freeprogrammingresources.com/freecsharp.html&#34; rel=&#34;nofollow&#34;&#62;http://www.freeprogrammingresources.com/freecsharp.html&#60;/a&#62;&#60;br /&#62;
List of Free C# Tutorials
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Design Patterns for Searching in C# &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.frontiernet.net/~fredm/dps/Contents.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.frontiernet.net/~fredm/dps/Contents.htm&#60;/a&#62;&#60;br /&#62;
Free on-line book on design patterns for searching with C#.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;FunctionX C# Page &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.functionx.com/csharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.functionx.com/csharp/&#60;/a&#62;&#60;br /&#62;
C# Tutorials and C# Code Examples
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;GeekInterview.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.geekinterview.com/Interview-Questions/Microsoft/C-Sharp&#34; rel=&#34;nofollow&#34;&#62;http://www.geekinterview.com/Interview-Questions/Microsoft/C-Sharp&#60;/a&#62;&#60;br /&#62;
C# Interview Questions
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Geekpedia &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.geekpedia.com/language5_Csharp.html&#34; rel=&#34;nofollow&#34;&#62;http://www.geekpedia.com/language5_Csharp.html&#60;/a&#62;&#60;br /&#62;
C# Tutorials
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# For Delphi Developers &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.glennstephens.com.au/tech/CSharp4DelphiDevelopers.pdf&#34; rel=&#34;nofollow&#34;&#62;http://www.glennstephens.com.au/tech/CSharp4DelphiDevelopers.pdf&#60;/a&#62;&#60;br /&#62;
A comparison of C# and Delphi.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;DotGNU Project &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.gnu.org/software/dotgnu/&#34; rel=&#34;nofollow&#34;&#62;http://www.gnu.org/software/dotgnu/&#60;/a&#62;&#60;br /&#62;
The DotGNU project aims to be for webservices and for C# programs what GNU/Linux is rapidly becoming for desktop and server applications: the industry leader and provider of Free Software solutions.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Go4Expert &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.go4expert.com/forums/forumdisplay.php?f=82&#34; rel=&#34;nofollow&#34;&#62;http://www.go4expert.com/forums/forumdisplay.php?f=82&#60;/a&#62;&#60;br /&#62;
C# Tutorials and Source Code
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;The Hitmill &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.hitmill.com/programming/dotNET/csharp.html&#34; rel=&#34;nofollow&#34;&#62;http://www.hitmill.com/programming/dotNET/csharp.html&#60;/a&#62;&#60;br /&#62;
Annotated C# resource site for C# programmers; includes links to courses, chats, C# articles, C# white papers, C# books,e-books, courses, discussions, C# newsgroups, articles, C# whitepapers, products, tools, code examples, and the topic of C# and Web Services.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Hooked on LINQ &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.hookedonlinq.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.hookedonlinq.com/&#60;/a&#62;&#60;br /&#62;
This website aims to be the premier community resource for LINQ (Language Integrated Query) for Microsoft®'s .NET.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Dissecting a C# Application: Inside SharpDevelop &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.icsharpcode.net/OpenSource/SD/InsideSharpDevelop.aspx&#34; rel=&#34;nofollow&#34;&#62;http://www.icsharpcode.net/OpenSource/SD/InsideSharpDevelop.aspx&#60;/a&#62;&#60;br /&#62;
Free book, by APress.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;InfoQ &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.infoq.com/c_sharp&#34; rel=&#34;nofollow&#34;&#62;http://www.infoq.com/c_sharp&#60;/a&#62;&#60;br /&#62;
All content and news on InfoQ about C#
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Best Free C# Programming Training Materials &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.intelligentedu.com/it_training_materials_and_books/free_c_sharp_training_materials.html&#34; rel=&#34;nofollow&#34;&#62;http://www.intelligentedu.com/it_training_materials_and_books/free_c_sharp_training_materials.html&#60;/a&#62;&#60;br /&#62;
List of free C# articles and tutorials.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# In Detail &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.jaggersoft.com/csharp.html&#34; rel=&#34;nofollow&#34;&#62;http://www.jaggersoft.com/csharp.html&#60;/a&#62;&#60;br /&#62;
C# presentation slides by Jon Jagger
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Professor Smiley&#38;#39;s C# Web Site &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.johnsmiley.com/csharp/csharp.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.johnsmiley.com/csharp/csharp.htm&#60;/a&#62;&#60;br /&#62;
Devoted to the C# (pronounced C-Sharp) Language
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Knowledge Island &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.kisland.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.kisland.com/&#60;/a&#62;&#60;br /&#62;
C# info and links
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;LearnVisualStudio.NET &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.learnvisualstudio.net/csharptutorials.aspx&#34; rel=&#34;nofollow&#34;&#62;http://www.learnvisualstudio.net/csharptutorials.aspx&#60;/a&#62;&#60;br /&#62;
Video Tutorial Library - Beginning C#
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# Resources &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.mag37.com/csharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.mag37.com/csharp/&#60;/a&#62;&#60;br /&#62;
Mike Mayers C# site with links and resources.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;&#60;a href=&#34;http://www.mantrotech.com/technology/csharp/index.asp&#34; rel=&#34;nofollow&#34;&#62;http://www.mantrotech.com/technology/csharp/index.asp&#60;/a&#62; Mantro Tech &#60;/strong&#62;&#60;br /&#62;
A C# Tutorial
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Mentalis.org &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.mentalis.org/&#34; rel=&#34;nofollow&#34;&#62;http://www.mentalis.org/&#60;/a&#62;&#60;br /&#62;
Mentalis.org is a personal site where the webmasters publish their own .NET classes (mainly C# and VB.NET).
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Modulo3 &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.modulo3.de/seminare/entwicklung/c_sharpein/online_version/cs_tutorial_en/cs_tutorial_eng-Dateien/frame.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.modulo3.de/seminare/entwicklung/c_sharpein/online_version/cs_tutorial_en/cs_tutorial_eng-Dateien/frame.htm&#60;/a&#62;&#60;br /&#62;
The C# programming language - An Introduction
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Mono &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.mono-project.com/CSharp_Compiler&#34; rel=&#34;nofollow&#34;&#62;http://www.mono-project.com/CSharp_Compiler&#60;/a&#62;&#60;br /&#62;
C# Compiler and other resources developed by the open-source Mono Project
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Mycplus.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.mycplus.com/c.asp?ID=8&#34; rel=&#34;nofollow&#34;&#62;http://www.mycplus.com/c.asp?ID=8&#60;/a&#62;&#60;br /&#62;
A Comparative Overview of the C# .NET Programming Language
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;My Tech Library &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.mytechlibrary.com/pages/c-sharp/c-sharp&#34; rel=&#34;nofollow&#34;&#62;http://www.mytechlibrary.com/pages/c-sharp/c-sharp&#60;/a&#62;&#60;br /&#62;
C# Articles
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;O&#38;apos;REILLY of C# &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://oreilly.com/csharp/index.html&#34; rel=&#34;nofollow&#34;&#62;http://oreilly.com/csharp/index.html&#60;/a&#62;&#60;br /&#62;
C# News, Books, Conferences, Courses, and Community
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;ProgrammersHeaven.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.programmersheaven.com/zone30/index.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.programmersheaven.com/zone30/index.htm&#60;/a&#62;&#60;br /&#62;
C# Zone at Programmers Heaven
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;ProgrammerTutorials.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.programmertutorials.com/languages/2/Csh&#34; rel=&#34;nofollow&#34;&#62;http://www.programmertutorials.com/languages/2/Csh&#60;/a&#62;&#60;br /&#62;
List of C# Tutorials
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Programming Tutorials.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.programmingtutorials.com/tutorial.asp?id=csharp&#34; rel=&#34;nofollow&#34;&#62;http://www.programmingtutorials.com/tutorial.asp?id=csharp&#60;/a&#62;&#60;br /&#62;
Large collection of C# Tutorials
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Public Joes &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.publicjoe.f9.co.uk/csharp/csharp.html&#34; rel=&#34;nofollow&#34;&#62;http://www.publicjoe.f9.co.uk/csharp/csharp.html&#60;/a&#62;&#60;br /&#62;
C# Articles, Links, and a free ebook composed of freely available book chapters from various publishers.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# Unleashed Source Code &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.samspublishing.com/content/images/067232122X/downloads/code.zip&#34; rel=&#34;nofollow&#34;&#62;http://www.samspublishing.com/content/images/067232122X/downloads/code.zip&#60;/a&#62;&#60;br /&#62;
by Joe Mayo/Sams
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Softsteel Solutions &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.softsteel.co.uk/tutorials/cSharp/cIndex.html&#34; rel=&#34;nofollow&#34;&#62;http://www.softsteel.co.uk/tutorials/cSharp/cIndex.html&#60;/a&#62;&#60;br /&#62;
C# Tutorial
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# at Suite101.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.suite101.com/welcome.cfm/c_sharp&#34; rel=&#34;nofollow&#34;&#62;http://www.suite101.com/welcome.cfm/c_sharp&#60;/a&#62;&#60;br /&#62;
C# at Suite101.com has monthly articles on C#, news, discussions, book recommendations on C#.
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;TechInterviews.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.techinterviews.com/index.php?p=55&#34; rel=&#34;nofollow&#34;&#62;http://www.techinterviews.com/index.php?p=55&#60;/a&#62;&#60;br /&#62;
C# Interview Questions
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;TechTutorials &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.techtutorials.com/Programming/C_Sharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.techtutorials.com/Programming/C_Sharp/&#60;/a&#62;&#60;br /&#62;
C# Tutorials
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# (C sharp): Microsoft Forum at Tek-Tips &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.tek-tips.com/gthreadminder.cfm/lev2/4/lev3/32/pid/732&#34; rel=&#34;nofollow&#34;&#62;http://www.tek-tips.com/gthreadminder.cfm/lev2/4/lev3/32/pid/732&#60;/a&#62;&#60;br /&#62;
C# (C sharp): Microsoft technical support forum and mutual help system for computer professionals. Selling and recruiting forbidden
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;C# Coding Style Standards &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.textrush.com/coding-standard-cs.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.textrush.com/coding-standard-cs.htm&#60;/a&#62;&#60;br /&#62;
List of C# Coding Standards
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;TheFreeCountry.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.thefreecountry.com/compilers/csharp.sht&#34; rel=&#34;nofollow&#34;&#62;http://www.thefreecountry.com/compilers/csharp.sht&#60;/a&#62;&#60;br /&#62;
Free C# Compilers
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Philips Medical Systems - Software / SPI &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.tiobe.com/standards/gemrcsharpcs.pdf&#34; rel=&#34;nofollow&#34;&#62;http://www.tiobe.com/standards/gemrcsharpcs.pdf&#60;/a&#62;&#60;br /&#62;
C# Coding Standard
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;TotalASP.net &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.totalasp.co.uk/default2net.asp?tree=164&#34; rel=&#34;nofollow&#34;&#62;http://www.totalasp.co.uk/default2net.asp?tree=164&#60;/a&#62;&#60;br /&#62;
C# Articles
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;TooBloo &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.troobloo.com/tech/csharp.shtml&#34; rel=&#34;nofollow&#34;&#62;http://www.troobloo.com/tech/csharp.shtml&#60;/a&#62;&#60;br /&#62;
There are 700 articles &#38;amp; tutorials regarding &#34;C#&#34;
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Urban Dictionary &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.urbandictionary.com/define.php?term=C%2&#34; rel=&#34;nofollow&#34;&#62;http://www.urbandictionary.com/define.php?term=C%2&#60;/a&#62;&#60;br /&#62;
Definitions for C#
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Visualbuilder.com &#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.visualbuilder.com/Csharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.visualbuilder.com/Csharp/&#60;/a&#62;&#60;br /&#62;
C# Resources
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;WebReference.com&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.webreference.com/programming/csharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.webreference.com/programming/csharp/&#60;/a&#62;&#60;br /&#62;
C# Links and Resources
&#60;/li&#62;
&#60;li&#62;&#60;strong&#62;Jon Skeets C# Site&#60;/strong&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.yoda.arachsys.com/csharp/&#34; rel=&#34;nofollow&#34;&#62;http://www.yoda.arachsys.com/csharp/&#60;/a&#62;&#60;br /&#62;
C# and .NET Articles and Links
&#60;/li&#62;
&#60;/ol&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "C# FAQs (Frequently Asked Questions)"</title>
<link>http://discussions.billionsparks.com/topic/18#post-24</link>
<pubDate>Fri, 28 May 2010 09:46:20 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">24@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;C# FAQ for C++ programmers&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.andymcm.com/csharpfaq.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.andymcm.com/csharpfaq.htm&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "C# Tutorials"</title>
<link>http://discussions.billionsparks.com/topic/17#post-23</link>
<pubDate>Fri, 28 May 2010 09:42:01 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">23@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;One more :)&#60;/p&#62;
&#60;p&#62;C# Station -&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.csharp-station.com/Tutorial.aspx&#34; rel=&#34;nofollow&#34;&#62;http://www.csharp-station.com/Tutorial.aspx&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "C# Tutorials"</title>
<link>http://discussions.billionsparks.com/topic/17#post-22</link>
<pubDate>Fri, 28 May 2010 09:41:13 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">22@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;This one is also very good:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.java2s.com/Tutorial/CSharp/CatalogCSharp.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.java2s.com/Tutorial/CSharp/CatalogCSharp.htm&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "A Comparative Overview of C#"</title>
<link>http://discussions.billionsparks.com/topic/19#post-21</link>
<pubDate>Fri, 28 May 2010 09:36:29 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">21@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;A Comparative Overview of C#:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://genamics.com/developer/csharp_comparative.htm&#34; rel=&#34;nofollow&#34;&#62;http://genamics.com/developer/csharp_comparative.htm&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "C# FAQs (Frequently Asked Questions)"</title>
<link>http://discussions.billionsparks.com/topic/18#post-20</link>
<pubDate>Fri, 28 May 2010 09:32:43 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">20@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;C# FAQs available at:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://blogs.msdn.com/b/csharpfaq/&#34; rel=&#34;nofollow&#34;&#62;http://blogs.msdn.com/b/csharpfaq/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "C# Tutorials"</title>
<link>http://discussions.billionsparks.com/topic/17#post-19</link>
<pubDate>Fri, 28 May 2010 09:29:43 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">19@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Found a nice C# tutorial:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://csharp.net-tutorials.com/&#34; rel=&#34;nofollow&#34;&#62;http://csharp.net-tutorials.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Let me know if you found more links to C# tutorials&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Sorting Algorithms: Bubble Sort, Insertion Sort, Merge Sort and Quick Sort"</title>
<link>http://discussions.billionsparks.com/topic/16#post-18</link>
<pubDate>Fri, 28 May 2010 09:13:36 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">18@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;The most popular sorting algorithms are as follows:&#60;/p&#62;
&#60;p&#62;- Bubble Sort&#60;br /&#62;
- Insertion Sort&#60;br /&#62;
- Merge Sort&#60;br /&#62;
- Quick Sort&#60;/p&#62;
&#60;p&#62;Here are the links to the video tutorials for above mentioned algorithms:&#60;/p&#62;
&#60;p&#62;- Bubble Sort: &#60;a href=&#34;http://xoax.net/comp/sci/algorithms/Lesson1.php&#34; rel=&#34;nofollow&#34;&#62;http://xoax.net/comp/sci/algorithms/Lesson1.php&#60;/a&#62;&#60;br /&#62;
- Insertion Sort: &#60;a href=&#34;http://xoax.net/comp/sci/algorithms/Lesson2.php&#34; rel=&#34;nofollow&#34;&#62;http://xoax.net/comp/sci/algorithms/Lesson2.php&#60;/a&#62;&#60;br /&#62;
- Merge Sort: &#60;a href=&#34;http://xoax.net/comp/sci/algorithms/Lesson3.php&#34; rel=&#34;nofollow&#34;&#62;http://xoax.net/comp/sci/algorithms/Lesson3.php&#60;/a&#62;&#60;br /&#62;
- Quick Sort: &#60;a href=&#34;http://xoax.net/comp/sci/algorithms/Lesson4.php&#34; rel=&#34;nofollow&#34;&#62;http://xoax.net/comp/sci/algorithms/Lesson4.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Win32 Programming Video Tutorial"</title>
<link>http://discussions.billionsparks.com/topic/15#post-17</link>
<pubDate>Fri, 28 May 2010 09:01:17 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">17@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Are you interested in learning Win32 programming or just want to revise the basics? What could be better than a video tutorial? This video tutorial covers all the Win32 Basics such as Message Loop and the messages, working with GDI, adding menu items, Responding to events etc. Here's the link to this useful tutorial:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://xoax.net/comp/cpp/win32/Win32PL.php&#34; rel=&#34;nofollow&#34;&#62;http://xoax.net/comp/cpp/win32/Win32PL.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;In case you found more resources please feel free to post it here.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "C/C++ Interview Questions"</title>
<link>http://discussions.billionsparks.com/topic/14#post-16</link>
<pubDate>Tue, 25 May 2010 22:40:08 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">16@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Here are some C/C++ Interview Questions:&#60;/p&#62;
&#60;ol&#62;
&#60;li&#62;How do you decide which integer type to use? &#60;/li&#62;
&#60;li&#62;What should the 64-bit integer type on new, 64-bit machines be? &#60;/li&#62;
&#60;li&#62;What’s the best way to declare and define global variables? &#60;/li&#62;
&#60;li&#62;What does extern mean in a function declaration? &#60;/li&#62;
&#60;li&#62;What’s the auto keyword good for? &#60;/li&#62;
&#60;li&#62;Define a linked list node which contains a pointer to itself. &#60;/li&#62;
&#60;li&#62;How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters? &#60;/li&#62;
&#60;li&#62;How can I declare a function that returns a pointer to a function of its own type? &#60;/li&#62;
&#60;li&#62;My compiler is complaining about an invalid redeclaration of a function, but I only define it once and call it once. What’s happening? &#60;/li&#62;
&#60;li&#62;What can I safely assume about the initial values of variables which are not explicitly initialized? &#60;/li&#62;
&#60;li&#62;Why can’t I initialize a local array with a string? &#60;/li&#62;
&#60;li&#62;What is the difference between char a[] = “string”; and char *p = “string”; ? &#60;/li&#62;
&#60;li&#62;How do I initialize a pointer to a function? &#60;/li&#62;
&#60;/ol&#62;
&#60;p&#62;Just a first set of Questions. Keep checking for updates.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "How to create hard link in windows?"</title>
<link>http://discussions.billionsparks.com/topic/13#post-15</link>
<pubDate>Tue, 25 May 2010 09:42:51 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">15@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;It is possible to create a hard link under NT5. It can be done using &#60;strong&#62;CreateHardLink&#60;/strong&#62; function and which is similar to UNIX hard link. With a hard link, a file can have two separate names. Note that there is only one file, so a change to a file will be available regardless of which name was used to open the file.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
BOOL CreateHardLink (&#60;br /&#62;
   LPCTSTR lpFileName,&#60;br /&#62;
   LPCTSTR lpExistingFileName,&#60;br /&#62;
   BOOL lpSecurityAttributes)&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The first two arguments, while in the opposite order, are used as in &#60;strong&#62;CopyFile&#60;/strong&#62;. The two file names, the new name and the existing name, must occur in the same file system volume, but they can be in different directories. The security attributes, if any, apply to the new file name.&#60;/p&#62;
&#60;p&#62;Close examination of Microsoft documentation shows a &#34;number of links&#34; member field in the &#60;strong&#62;BY_HANDLE_FILE_INFO&#60;/strong&#62; structure, and this link count is used to determine whether or not a file can be deleted. DeleteFile removes the name from the file system directory, but the actual file cannot be deleted until the &#34;number of links&#34; count reaches 0.
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Cryptography: Random Passwords Revised"</title>
<link>http://discussions.billionsparks.com/topic/12#post-14</link>
<pubDate>Thu, 20 May 2010 23:53:24 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">14@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;In case you wanna read more about randomness for security:&#60;/p&#62;
&#60;p&#62;Request for Comments: 4086&#60;br /&#62;
Randomness Requirements for Security&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.ietf.org/rfc/rfc4086.txt&#34; rel=&#34;nofollow&#34;&#62;http://www.ietf.org/rfc/rfc4086.txt&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Cryptography: Random Passwords Revised"</title>
<link>http://discussions.billionsparks.com/topic/12#post-13</link>
<pubDate>Thu, 20 May 2010 23:42:53 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">13@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Interesting article about generating Random Passwords:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://blogs.msdn.com/gstemp/archive/2004/02/23/78434.aspx&#34; rel=&#34;nofollow&#34;&#62;http://blogs.msdn.com/gstemp/archive/2004/02/23/78434.aspx&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "The &#039;Middle&#039; Wife"</title>
<link>http://discussions.billionsparks.com/topic/11#post-12</link>
<pubDate>Tue, 18 May 2010 02:48:34 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">12@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Guys,&#60;/p&#62;
&#60;p&#62;I've just read a short story which I think is a must read. It's so cute. Here's the story:&#60;/p&#62;
&#60;p&#62;The 'Middle Wife' by an Anonymous 2nd grade teacher &#60;/p&#62;
&#60;p&#62;I've been teaching now for about fifteen years. I have two kids myself, but the best birth story I know is the one I saw in my own second grade classroom a few years back.&#60;/p&#62;
&#60;p&#62;When I was a kid, I loved show-and-tell So I always have a few sessions with my students. It helps them get over shyness and usually, show-and-tell is pretty tame. Kids bring in pet turtles, model airplanes, pictures of fish they catch, stuff like that. And I never, ever place any boundaries or limitations on them. If they want to lug it in to school and talk about it, they're welcome.&#60;/p&#62;
&#60;p&#62;Well, one day this little girl, Erica, a very bright, very outgoing kid, takes her turn and waddles up to the front of the class with a pillow stuffed under her sweater.&#60;/p&#62;
&#60;p&#62;She holds up a snapshot of an infant. 'This is Luke, my baby brother, and I'm going to tell you about his birthday'&#60;/p&#62;
&#60;p&#62;'First, Mom and Dad made him as a symbol of their love, and then Dad put a seed in my Mom's stomach, and Luke grew in there. He ate for nine months through an umbrella cord.'&#60;/p&#62;
&#60;p&#62;She's standing there with her hands on the pillow, and I'm trying not to laugh and wishing I had my camcorder with me. The kids are watching her in amazement.&#60;/p&#62;
&#60;p&#62;'Then, about two Saturdays ago, my Mom starts saying and going, 'Oh, Oh, Oh, Oh!' Erica puts a hand behind her back and groans. 'She walked around the house for, like an hour, 'Oh, oh, oh!' (Now this kid is doing a hysterical duck walk and groaning.)&#60;/p&#62;
&#60;p&#62;'My Dad called the middle wife. She delivers babies, but she doesn't have a sign on the car like the Domino's man. They got my Mom to lie down in bed like this.' (Then Erica lies down with her back against the wall.) 'And then, pop!&#60;/p&#62;
&#60;p&#62;My Mom had this bag of water she kept in there in case he got thirsty, and it just blew up and spilled all over the bed, like psshhheew!' (This kid has her legs spread with her little hands miming water flowing away. It was too much!)&#60;/p&#62;
&#60;p&#62;'Then the middle wife starts saying 'push, push,' and 'breathe, breathe. They started counting, but never even got past ten. Then, all of a sudden, out comes my brother. He was covered in yucky stuff that they all said it was from Mom's play-center, (placenta) so there must be a lot of toys inside there.'&#60;/p&#62;
&#60;p&#62;Then Erica stood up, took a big theatrical bow and returned to her seat. I'm sure I applauded the loudest. Ever since then, when it's show-and-tell day, I bring my camcorder, just in case another 'Middle Wife' comes along.&#60;/p&#62;
&#60;p&#62;Enjoy!&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "5 High-Paying, Low-Stress Jobs in USA"</title>
<link>http://discussions.billionsparks.com/topic/9#post-10</link>
<pubDate>Tue, 18 May 2010 00:26:07 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">10@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;I've just read article on Yahoo about &#34;5 High-Paying, Low-Stress Jobs&#34; in USA. I really like it. The list includes Physical Therapist,  Computer Software Engineer, Civil Engineer, Massage Therapist and Technical Writer. If you are interested to read further then here's the link to article.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://finance.yahoo.com/career-work/article/109521/5-high-paying-low-stress-jobs?mod=career-worklife_balance&#34; rel=&#34;nofollow&#34;&#62;http://finance.yahoo.com/career-work/article/109521/5-high-paying-low-stress-jobs?mod=career-worklife_balance&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Your Favorite Quotes"</title>
<link>http://discussions.billionsparks.com/topic/8#post-9</link>
<pubDate>Mon, 17 May 2010 23:15:37 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">9@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;If you have any favorite quote please post it here.&#60;/p&#62;
&#60;p&#62;Although there are so many quotes which I like. Here's the first one from the list:&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Life grants nothing to us without hard work.&#60;/strong&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Design Patterns"</title>
<link>http://discussions.billionsparks.com/topic/6#post-8</link>
<pubDate>Mon, 17 May 2010 18:07:47 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">8@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;One more useful website:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.oodesign.com&#34; rel=&#34;nofollow&#34;&#62;http://www.oodesign.com&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Design Pattern"</title>
<link>http://discussions.billionsparks.com/topic/7#post-7</link>
<pubDate>Mon, 17 May 2010 07:33:33 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">7@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Hi Friends,&#60;/p&#62;
&#60;p&#62;I've found few very good links on design patterns. Here's the list:&#60;/p&#62;
&#60;p&#62;1. &#60;a href=&#34;http://sourcemaking.com/design_patterns&#34; rel=&#34;nofollow&#34;&#62;http://sourcemaking.com/design_patterns&#60;/a&#62;&#60;br /&#62;
2. &#60;a href=&#34;http://www.dofactory.com/Patterns/Patterns.aspx&#34; rel=&#34;nofollow&#34;&#62;http://www.dofactory.com/Patterns/Patterns.aspx&#60;/a&#62;&#60;br /&#62;
3. &#60;a href=&#34;http://sourcemaking.com/design-patterns-vidtut&#34; rel=&#34;nofollow&#34;&#62;http://sourcemaking.com/design-patterns-vidtut&#60;/a&#62;&#60;br /&#62;
4. C++ Design Pattern: What is a Design Pattern&#60;br /&#62;
   &#60;a href=&#34;http://www.codeguru.com/forum/showthread.php?t=327982&#34; rel=&#34;nofollow&#34;&#62;http://www.codeguru.com/forum/showthread.php?t=327982&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Others:&#60;/p&#62;
&#60;p&#62;1. UML: &#60;a href=&#34;http://sourcemaking.com/uml&#34; rel=&#34;nofollow&#34;&#62;http://sourcemaking.com/uml&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;- Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Design Patterns"</title>
<link>http://discussions.billionsparks.com/topic/6#post-6</link>
<pubDate>Mon, 17 May 2010 07:31:44 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">6@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Hi Friends,&#60;/p&#62;
&#60;p&#62;I've found few very good links on design patterns. Here's the list:&#60;/p&#62;
&#60;p&#62;1. &#60;a href=&#34;http://sourcemaking.com/design_patterns&#34; rel=&#34;nofollow&#34;&#62;http://sourcemaking.com/design_patterns&#60;/a&#62;&#60;br /&#62;
2. &#60;a href=&#34;http://www.dofactory.com/Patterns/Patterns.aspx&#34; rel=&#34;nofollow&#34;&#62;http://www.dofactory.com/Patterns/Patterns.aspx&#60;/a&#62;&#60;br /&#62;
3. &#60;a href=&#34;http://sourcemaking.com/design-patterns-vidtut&#34; rel=&#34;nofollow&#34;&#62;http://sourcemaking.com/design-patterns-vidtut&#60;/a&#62;&#60;br /&#62;
4. C++ Design Pattern: What is a Design Pattern&#60;br /&#62;
     &#60;a href=&#34;http://www.codeguru.com/forum/showthread.php?t=327982&#34; rel=&#34;nofollow&#34;&#62;http://www.codeguru.com/forum/showthread.php?t=327982&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Others:&#60;/p&#62;
&#60;p&#62;1. UML: &#60;a href=&#34;http://sourcemaking.com/uml&#34; rel=&#34;nofollow&#34;&#62;http://sourcemaking.com/uml&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;- Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>admin009 on "Design Patterns"</title>
<link>http://discussions.billionsparks.com/topic/5#post-5</link>
<pubDate>Mon, 17 May 2010 07:28:45 +0000</pubDate>
<dc:creator>admin009</dc:creator>
<guid isPermaLink="false">5@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Hi Friends,&#60;/p&#62;
&#60;p&#62;I've found few very good links on design patterns. Here's the list:&#60;/p&#62;
&#60;p&#62;1. &#60;a href=&#34;http://sourcemaking.com/design_patterns&#34; rel=&#34;nofollow&#34;&#62;http://sourcemaking.com/design_patterns&#60;/a&#62;&#60;br /&#62;
2. &#60;a href=&#34;http://www.dofactory.com/Patterns/Patterns.aspx&#34; rel=&#34;nofollow&#34;&#62;http://www.dofactory.com/Patterns/Patterns.aspx&#60;/a&#62;&#60;br /&#62;
3. &#60;a href=&#34;http://sourcemaking.com/design-patterns-vidtut&#34; rel=&#34;nofollow&#34;&#62;http://sourcemaking.com/design-patterns-vidtut&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Others:&#60;/p&#62;
&#60;p&#62;1. UML: &#60;a href=&#34;http://sourcemaking.com/uml&#34; rel=&#34;nofollow&#34;&#62;http://sourcemaking.com/uml&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;- Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Design Patterns"</title>
<link>http://discussions.billionsparks.com/topic/4#post-4</link>
<pubDate>Mon, 17 May 2010 07:24:00 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">4@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Hi Friends,&#60;/p&#62;
&#60;p&#62;I've found few very good links on design patterns. Here's the list:&#60;/p&#62;
&#60;p&#62;1. &#60;a href=&#34;http://sourcemaking.com/design_patterns&#34; rel=&#34;nofollow&#34;&#62;http://sourcemaking.com/design_patterns&#60;/a&#62;&#60;br /&#62;
2. &#60;a href=&#34;http://www.dofactory.com/Patterns/Patterns.aspx&#34; rel=&#34;nofollow&#34;&#62;http://www.dofactory.com/Patterns/Patterns.aspx&#60;/a&#62;&#60;br /&#62;
3. &#60;a href=&#34;http://sourcemaking.com/design-patterns-vidtut&#34; rel=&#34;nofollow&#34;&#62;http://sourcemaking.com/design-patterns-vidtut&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Others:&#60;/p&#62;
&#60;p&#62;1. UML: &#60;a href=&#34;http://sourcemaking.com/uml&#34; rel=&#34;nofollow&#34;&#62;http://sourcemaking.com/uml&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;- Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Please Introduce youself"</title>
<link>http://discussions.billionsparks.com/topic/3#post-3</link>
<pubDate>Mon, 25 Jan 2010 10:14:55 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">3@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Hi Friends,&#60;/p&#62;
&#60;p&#62;Thanks for joining Discussions and Sparks. Please inroduce your self here. Please include information about yourself like your Name, Location, Education, Hobbies. Please also let us know why are you where.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Discussions &#38;amp; Sparks
&#60;/p&#62;</description>
</item>
<item>
<title>Spark on "Welcome to Discussions &#38; Sparks"</title>
<link>http://discussions.billionsparks.com/topic/2#post-2</link>
<pubDate>Mon, 25 Jan 2010 09:05:51 +0000</pubDate>
<dc:creator>Spark</dc:creator>
<guid isPermaLink="false">2@http://discussions.billionsparks.com/</guid>
<description>&#60;p&#62;Hello friends,&#60;/p&#62;
&#60;p&#62;First of all, I would like you to welcome to Discussions &#38;amp; Sparks community - A Place where you can share your thoughts and ideas that we call sparks, a place where you can share the useful information.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Discussions &#38;amp; Sparks
&#60;/p&#62;</description>
</item>

</channel>
</rss>

