fork download
  1.  
  2. #include<stdio.h>
  3.  
  4. void main(){
  5. LCD_Init();
  6. LCD_Clear();
  7. LCD_set_cursor(1,1);
  8. LCD_Print("hello world");
  9. }
Success #stdin #stdout 0.02s 25844KB
stdin
Standard input is empty
stdout
#include<stdio.h>

void main(){
    LCD_Init();
    LCD_Clear();
    LCD_set_cursor(1,1);
    LCD_Print("hello world");
}