1 what will be out put of the following code snippet
#include <stdio.h>
void main()
{
int i,n;
printf("enter the number");
scanf("%d",&n);
for(i=0;i<=n;i++)
printf("%d\n",n);
}
  

Posted on by