#include #include int main(void){ DDRC = 0x01; while(1){ PORTC = 0x01; _delay_ms(200); PORTC = 0x00; _delay_ms(200); } return 0; }