What will be the output of the program?
#include int main() { int i=3; i = i++; printf("%d\n", i); return 0; }
3
4
5
6
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
Be The First To Comment