Stage-1 Students SoCEM / Mbed 2 deprecated Task137

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 Serial pc(SERIAL_TX, SERIAL_RX);
00004 
00005 char nameStr[30]; // array of chars (string)
00006 int age;          // integer to hold your age
00007 
00008 void getData() 
00009 {
00010    pc.scanf("%s %d", &nameStr, &age);
00011 }
00012 
00013 int main()
00014 {
00015    getData();
00016    
00017    pc.printf("Hello %s \n\r", nameStr);
00018    pc.printf("You are %d \n", age);
00019 }