Computer Science, asked by PNagamallikarjuna, 10 months ago

| Predict the output of following code snippet?
#include<stdio.h>
#define a 6
int main()
int a=3;
a+=1;
printf("%d",a);
return 0;​

Answers

Answered by ychandak1998
0

Answer:

4

0

Explanation:

due to the code a+=1

a+ 1 = a

Similar questions