MBED.H & STDIO.H
These are predefined header files needed in any program. They're not part of your program. they contain PREDEFINED functions preset by the software or whatnot so just include them don't need to know anything
STDIO contains functions like printf, scanf, etc MBED.H contains functions. classes and such for you and predefines things for you (pins & others) so you don't have to do it thats why you include it
- include mbed.h
- inlcude stdio.h
Please log in to post comments.