Predict the output of below programs. 


#include<stdio.h>

int main()
{

   int n;

   for(n = 7; n!=0; n--)

     printf("n = %d", n--);

   getchar();

   return 0;
}

Posted on by