0

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);
}
ryyker
  • 22,849
  • 3
  • 43
  • 87
Joyon
  • 1
  • 2
  • Other than formatting, may I suggest that you use the minimum _[conforming](https://stackoverflow.com/questions/38543876/prototype-of-main-function-in-c-or-c)_ signature for `main`: `int main(void){...`, then in the bottom of that function, include a return statement: `return 0;`. And I am not sure what `#include "mde8086.h"` is. (_besides wrong_) – ryyker Aug 16 '18 at 18:51
  • 1
    I see you are kind of new to this site. It is preferred (for your benefit) that questions be presented using a [mcve]. – ryyker Aug 16 '18 at 18:55

0 Answers0