Answers for "c++ preprocessor commands"

C++
0

c++ preprocessor commands

#include <iostream>
using namespace std;

#define PI 3.14159

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

   return 0;
}
Posted by: Guest on April-18-2021

Browse Popular Code Answers by Language