main-endmain
The main and endmain statements controls where the execution starts and stops
If no main and endmain statements will be found, the execution will start
att the beginning of the file and stop at the end.
Example
main()
int a;
a = p1 + 5;
printf( "a = %d", a);
endmain