编辑代码

#include <stdio.h>
#include <assert.h>
int main(void)
{
   int  i;
   i = 0;
   assert(i++);
   printf("%d",i);

   return 0;
}