Wadi Ben Rhouma <wadi.benrhoum...@gmail.com> wrote:
> [-- text/plain, encoding quoted-printable, charset: UTF-8, 66 lines --]
> 
> thx ,sorry i have another question, i'm not failiar with LINUX , so can u
> help me with this , how can i write a C code on the terminal and excute it
> on my BBB ??
> 
Create your code in a file called, say, myprogram.c.

Then:-

    gcc -o myprogram myprogram.c

This will create a compiled program called myprogram which you can
execute by typing its name at the command prompt.  For C++ you can do
the same using g++ instead of gcc.

For more complex programs and libraries it gets more involved.

-- 
Chris Green
·

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to