#include const char message[] = "HELLO"; void main(void) { unsigned char z; DDRB = 0xFF; for(z=0;z<5;z++) PORTB= message[z]; }