University of Plymouth - Stages 1, 2 and 3 / Mbed OS Task136

Fork of Task136 by Nicholas Outram

main.cpp

Committer:
noutram
Date:
2019-09-11
Revision:
3:c28e88869b5a
Parent:
2:12fb933ccc6d

File content as of revision 3:c28e88869b5a:

#include "mbed.h"

Serial pc(SERIAL_TX, SERIAL_RX);

int main() {
    char nameString[30];
    int age;
    
    pc.printf("Enter your first name, then a space, then your age\n\r");
    pc.scanf("%s %d", nameString, &age);
    pc.printf("Hello %s\n\r", nameString);
    pc.printf("You are %d years old\n\r", age);
    
    //Loop forever
    while(1);
}