If we write down the line LCD_ALLCLR at the end of the code, what will be the output? *Sample Code:
#define _LCD
#include "mde8086.h"
void main(void )
{
int i;
LCD_init;
do {
LCD_ALLCLR;
LCD_puts( "Serial monitor !" );
LCD_LN21;
LCD_puts( "MDA-Win8086 Kit!" );
for( i = 0; i < 16; i ++ ) {
wait( 15000 );
LCD_RShift;
}
} while(1);
}