Kullanıcı:Heartsmagic

Ubuntu Türkiye Wiki sitesinden
15.39, 8 Temmuz 2011 tarihinde Heartsmagic (mesaj | katkılar) tarafından oluşturulmuş 11896 numaralı sürüm (Sayfa oluşturdu, içeriği: '<syntaxhighlight lang="php"> <?php $v = "string"; // sample initialization ?> html text <? echo $v; // end of php code ?> </syntaxhighlight> <sour...')
(fark) ← Önceki sürüm | Güncel sürüm (fark) | Sonraki sürüm → (fark)
Gezinti kısmına atla Arama kısmına atla
<?php
    $v = "string";    // sample initialization
?>
html text
<?
    echo $v;         // end of php code
?>


/* Hello World program */

#include<stdio.h>

main()
{
    printf("Hello World");


}