Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

c++ preprocessor commands

#include <iostream>
using namespace std;

#define PI 3.14159

int main () {
   cout << "Value of PI :" << PI << endl; 

   return 0;
}
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #preprocessor #commands
ADD COMMENT
Topic
Name
9+1 =