From 20e306717cc45faabb4805a92008138966207d8c Mon Sep 17 00:00:00 2001 From: shubhampaliwal2020 <73382942+shubhampaliwal2020@users.noreply.github.com> Date: Thu, 21 Oct 2021 22:22:16 +0530 Subject: [PATCH] Update 0001-define2.c --- test/cpp/0001-define2.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/cpp/0001-define2.c b/test/cpp/0001-define2.c index c13d085..f6208b1 100644 --- a/test/cpp/0001-define2.c +++ b/test/cpp/0001-define2.c @@ -1,4 +1,5 @@ #define x x +#define PI 3.14 int main() @@ -6,6 +7,9 @@ main() int x; x = 0; + //new example added + printf("The define value of PI = %d",PI); + return x; }