From 760b1a055be02f6132a839dcf70058832129c2a9 Mon Sep 17 00:00:00 2001 From: shubhampaliwal2020 <73382942+shubhampaliwal2020@users.noreply.github.com> Date: Thu, 21 Oct 2021 22:27:25 +0530 Subject: [PATCH] Update 0001-define2.c --- test/cpp/0001-define2.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/cpp/0001-define2.c b/test/cpp/0001-define2.c index c13d085..857b8c8 100644 --- a/test/cpp/0001-define2.c +++ b/test/cpp/0001-define2.c @@ -1,11 +1,13 @@ #define x x +#define SUM 0 int main() { int x; x = 0; + printf("SUM = %d", SUM); return x; }