Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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
Generated on Wed Jul 20 2022 03:41:46 by
1.7.2