I would like to know where I can see the output when I use the command printf. I am programming using the Arduino interface.
Update
I'll add a few lines of code for better understanding:
#include <stdio.h>
int main(void)
{
printf("Hello World");
return 0;
}