// printf, return(0)<br>แสดงการใช้ return แทน void สำหรับโปรแกรมย่อย
/* http://www.thaiall.com/tc */
#include <stdio.h>
#include <conio.h>
main()
{
printf(
"hello"
);
getch();
return
(0);
}