| 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
0
Answer:
4
0
Explanation:
due to the code a+=1
a+ 1 = a
Similar questions