begineer to mplab c language need help .
I am trying to run this example but it failed.
This information is used by the compiler to link all the hardware specifics and
source programs together.
#include <16f877a.h>
#include <stdio.h>
#include <ctype.h>
#use rs232(baud=9600,xmit=PIN_B0,rcv=PIN_B1)
main()
{
printf(“Enter characters:”);
while(TRUE)
putc(toupper(getc()));
}
the error messages are " #use " and "printf" undefined.
Can anyone tells me what is the problem ? thanks