We use cookies to provide our visitors with an optimal site experience. View our privacy notice and cookie notice to learn more about how we use cookies and how to manage your settings. By proceeding on our website you consent to the use of cookies.
This is a page about showing example application's utilizing the C Language, all built and run natively on the ARM device running Linux.
Hello World
Ubuntu/Debian software dependencies
sudo apt-get install build-essential
hello.c
#include <stdio.h> int main (void) { printf ("Hello, world!\n"); return 0; }
Build:
gcc -Wall hello.c -o hello
Run:
voodoo@panda-1gb-a1:~/examples$ ./hello Hello, world!