Simple.c

From Nutwiki
Revision as of 17:03, 27 October 2016 by Harald (Talk | contribs) (1 revision imported)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Das "simple.c" Programm ist ein Beispiel, wie ein minimales Programm aussieht. Es besteht lediglich aus einer main()-Funktion und einer Endlosschleife.

<source lang="c">

  1. include <compiler.h>

/*!

* \brief Main application routine. 
*
*/

int main(void) {

   for (;;);

} </source> Copyright by egnite Software GmbH