Kumudupinto
Joined 17 මැයි 2010
Latest comment: වසර 14කට පෙර by බිඟුවා in topic C code Syntax
ආයුබෝවන්! -- බිඟුවා සාකච්ඡාව 02:13, 13 ජූනි 2010 (යූටීසී)
සංස්කරණ උපදෙස්
සංස්කරණයplease read this page. සංස්කරණ උපදෙස්. -- බිඟුවා සාකච්ඡාව 02:40, 29 ජූනි 2010 (යූටීසී)
C code Syntax
සංස්කරණයCode
සංස්කරණය<source lang="c">
// Allocate all the windows
for (int i = 0; i < max; i++)
{
wins[i] = new Window();
}
</source>
Result
සංස්කරණය// Allocate all the windows
for (int i = 0; i < max; i++)
{
wins[i] = new Window();
}