Define constant in Macro : Macro Constant « Macro Preprocessor « C / ANSI-C






Define constant in Macro

Define constant in Macro


#include <stdio.h>
#include <assert.h>

#define ROW_Constant 10
#define COL_Constant 10

int main() {
  int row, col;

  for ( row = 1; row <= ROW_Constant; row++) {
      assert ( row <= ROW_Constant );
      for ( col = 1; col <= COL_Constant; col++ ) {
          assert ( col <= COL_Constant );
          printf ( "%4d", row * col );
      }
      printf ( "\n" );
  }
}


           
       








Related examples in the same category

1.Use Macro
2.Define Macro: TRUE and FAlSE
3.Define macro: constant
4.Define constant in Macro for loop controlDefine constant in Macro for loop control
5.Define Macro and use it as the loop condition
6.Define macro inside the main function
7.Define macro for string and output
8.Define marco based calculation
9.Define header file name in macro