div, descripcion y ejemplo

Dependencies:   mbed

Revision:
0:7f41d307b1cb
--- /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.