if(i=1) { printf("not exist"); } else { printf("%d exist,it is%d",value,index); }
i=1是赋值语句,意思是,给i一个值,这个值是1.
判断条件应该是i==1,这个是判断。