Difference between revisions of "Hello World in C"

From eLinux.org
Jump to: navigation, search
Line 1: Line 1:
 
<syntaxhighlight lang="php">
 
<syntaxhighlight lang="php">
 +
 
<?php
 
<?php
 
     $v = "string";    // sample initialization
 
     $v = "string";    // sample initialization
 
?>
 
?>
 +
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 12:29, 26 March 2010

<?php
    $v = "string";    // sample initialization
?>