This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Breaking instructions into two lines

Hi everyone,

How can I break a long instruction line into two or three lines to improve readability of the program written in " C language ?

Best regards,
Deepak

Parents
  • This is a standard 'C' question - nothing specifically to do with Keil nor the 8051!

    'C' treats all whitespace sequences (including comments) as equivalent - so, anywhere that one space is permitted, you can put as many spaces, tabs, newlines and comments as you like!

    Basically, whitespace can come anywhere between tokens;

    See your 'C' textbook.

Reply
  • This is a standard 'C' question - nothing specifically to do with Keil nor the 8051!

    'C' treats all whitespace sequences (including comments) as equivalent - so, anywhere that one space is permitted, you can put as many spaces, tabs, newlines and comments as you like!

    Basically, whitespace can come anywhere between tokens;

    See your 'C' textbook.

Children