It is said that,in c,b++; is equal to b=b+1; if this is the fact test++ in my code why generate a compile time error. test+1 is working well but test++ is not working.but why?
#include<stdio.h>
int main(void)
{
char test[80]="This is a test";
int a=13;
for(;a>=0;a--)
{
printf("%c",*(test++);
}
}