For example: PI = 3.141592653589793238462643383279502884197...
Example:
#define PI 3.141592653589793238462643383279502884197 #define MAX 99999 double x; x = PI; |
In addition, comment in a C++ program can be put after the symbol //
/* This is a comment in a C or C++ program */ |