<?xml version="1.0" encoding='utf-8'?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<card id="card1" title="Programming style - Page 21 - Wikipedia">
<p>
<a accesskey="1" href="page.php?w=programming_style_&amp;p=20">1.Previous</a><br />
<a accesskey="3" href="page.php?w=programming_style_&amp;p=22">3.Next</a>
</p>
<p>the programmer is free to style the code in different ways without affecting the meaning of the code. Generally, the programmer uses style that is considered to enhance <a href="page.php?w=readability">readability</a>.</p>

<p>The two code snippets below are the same logically, but differ in whitespace.</p>

<p><syntaxhighlight lang="c">int i;for(i=0;i<10;++i){    printf("%d",i*i+i);}</syntaxhighlight>versus <syntaxhighlight lang="c">int i;for (i = 0; i < 10; ++i) {    printf("%d", i * i + i);}</syntaxhighlight></></syntaxhighlight></10;++i){></syntaxhighlight></p>

<p>The</p><p>
<a accesskey="1" href="page.php?w=programming_style_&amp;p=20">1.Previous</a><br />
<a accesskey="3" href="page.php?w=programming_style_&amp;p=22">3.Next</a>
</p>

<do type="prev" label="Search">
        <go href="search.wml"/>
</do>

</card>
</wml>
