Angel David Yaguana Hernandez / Mbed 2 deprecated CPP_scanf

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 /* scanf example */
00003 #include <stdio.h>
00004 
00005 int main ()
00006 {
00007   char str [80];
00008   int i;
00009 
00010   printf ("Enter your family name: ");
00011   scanf ("%s",str);  
00012   printf ("Enter your age: ");
00013   scanf ("%d",&i);
00014   printf ("Mr. %s , %d years old.\n",str,i);
00015   printf ("Enter a hexadecimal number: ");
00016   scanf ("%x",&i);
00017   printf ("You have entered %#x (%d).\n",i,i);
00018   
00019   return 0;
00020 }
00021