What will be the output
#include<stdio.h>
int main()
{
int n;
for(n=7;n!=0;n--)
printf("n=%d",n--);
return 0;
}

Posted on by