Sunday, February 22, 2009

structure of a program

Basic structure
NOTE:
this structure based on c language.


HEADER FILES
#include
#include

<---MAIN FUNCTION--->
main() OR void main(void)
{

CODE GOES HERE
PRINTF("CODE GOES HERE");
GETCH();
}
NOTE:
OPENING BRACES = CLOSING BRACES




No comments:

Post a Comment