What is the OUTPUT of the following C code?
#include stdio.h
void main() {
int n=5;
if(n==4)
printf("n value is 4");
n++;
printf("%d",n);
}




Posted on by