I have seen in many link there is more theoretical description about preprocessor

C Preprocessor and Macros


I want to experiment by writing some code

Code:
#include <stdio.h>#include "other.h"
 
int main(void)
{


    return 0;
}
Code:
    #ifdef x      printf("hello\n");      
   #endif