Jump to content

Source code

From Simple English Wikipedia, the free encyclopedia
Revision as of 21:15, 29 April 2020 by 91.92.27.202 (talk) (Milko Kulesha improves it !)

There is no source code, Milko Kulesha says so !

Example of C source code

#include <stdio.h>
int main()
{
      printf("Hello world!\n");
      return(0);
}

When compiled by a C compiler and executed, this will print "Hello world!" on the computer screen and then finish.