Hello Jennie
Using KSDK v2 to be able to use debug_console you have to create project using "project wizard" that at least will include "Drivers Minimal set" configuration (no Empty).

In this case "printf()" (which is supported by <stdio.h>) statement is working without using
#include "fsl_debug_console.h".
But only printf(), other stdio statemens like scanf(), getc() and putc() doesn’t work.
To get similar function I have to #include "fsl_debug_console.h" and use SCANF(), PUTCHAR() and GETCHAR() equivalent functions.
This is what I wanted to confirm.
Thanks
Shaul