Changes

Jump to navigation Jump to search
no edit summary
Line 2: Line 2:     
C is still a popular choice for projects where speed and small program size are important considerations, such as embedded firmware. A significant portion of the [[Linux]] [[kernel]] was written in C. The syntax of C inspired many later languages such as [[C++]], [[Java]] and [[C Sharp]].  Many C compilers also support low-level programming via integrated inline assemblers.
 
C is still a popular choice for projects where speed and small program size are important considerations, such as embedded firmware. A significant portion of the [[Linux]] [[kernel]] was written in C. The syntax of C inspired many later languages such as [[C++]], [[Java]] and [[C Sharp]].  Many C compilers also support low-level programming via integrated inline assemblers.
  −
This programming language is now used and marketed more heavily by Microsoft.
      
== "Hello World!" program ==
 
== "Hello World!" program ==
    
<pre>
 
<pre>
#include <unistd.h>
+
#include <stdio.h>
   −
int
+
int main()
main()
   
{
 
{
  write (0, "Hello World!\n", 13);
+
  printf("Hello World!\n");
 
  return 0;
 
  return 0;
 
}
 
}
Line 19: Line 16:     
==See Also==
 
==See Also==
:[http://gcc.gnu.org/ GNU compiler gcc], probably the most used free C compiler
+
:[http://gcc.gnu.org/ Free compiler]
 
:[http://www.openwatcom.org/index.php/Main_Page Open Watcom C Compiler], high quality free C/C++ compiler.
 
:[http://www.openwatcom.org/index.php/Main_Page Open Watcom C Compiler], high quality free C/C++ compiler.
 
:[http://www.c-compiler.com/ Miracle C compiler], free c/c++ compiler.
 
:[http://www.c-compiler.com/ Miracle C compiler], free c/c++ compiler.
nsTeam1RO, nsTeam1RW, nsTeam1_talkRO, nsTeam1_talkRW
26,487

edits

Navigation menu