Google News
logo
Embedded C - Interview Questions
Write the program for the super loop demonstration?
Void main( void)

      {

       //prepare run function x

        X_Init();

        While(1)  //  ‘for ever’ (super loop)

         {

           X(); // Run function x()

          }

       }
Advertisement