Write Your First Program in C
Write your first program in C
// function main begins program execution
int main( void )
{
printf( "Hello World!\n" );
} // end function main
#include Preprocessor Directive
Lines beginning with # are processed by the preprocessor before compila...
ahmedgouda.hashnode.dev3 min read