Angel David Yaguana Hernandez
/
CPP_div
div, descripcion y ejemplo
Diff: main.cpp
- Revision:
- 0:7f41d307b1cb
diff -r 000000000000 -r 7f41d307b1cb main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Tue Apr 03 21:00:47 2012 +0000 @@ -0,0 +1,22 @@ +#include "mbed.h" + +/* system example : DIR */ +#include <stdio.h> +#include <stdlib.h> + +int main () +{ + int i; + printf ("Checking if processor is available..."); + if (system(NULL)) puts ("Ok"); + else exit (1); + printf ("Executing command DIR...\n"); + i=system ("dir"); + printf ("The value returned was: %d.\n",i); + return 0; +} + + + +//Output: +//38 div 5 => 7, remainder 3.