Angel David Yaguana Hernandez / Mbed 2 deprecated CPP_div

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 /* system example : DIR */
00004 #include <stdio.h>
00005 #include <stdlib.h>
00006 
00007 int main ()
00008 {
00009   int i;
00010   printf ("Checking if processor is available...");
00011   if (system(NULL)) puts ("Ok");
00012     else exit (1);
00013   printf ("Executing command DIR...\n");
00014   i=system ("dir");
00015   printf ("The value returned was: %d.\n",i);
00016   return 0;
00017 }
00018 
00019 
00020 
00021 //Output:
00022 //38 div 5 => 7, remainder 3.