This is my program:
main() { printf(\"hello world\\n\"); }
I get this warning when compiling it:
function should retur
write
return 0 ;
at the last line.