36

#define max 4
int main()
{
int i;
for(i=0;i < max;i++)
{
printf("%d",i);
max=max+i;
}
}

Output


compilation Error.

Related Posts