Possible Duplicate:
Please help me understanding the error a+++++b in C
Here is is the sample code, why "a+++++b" can not be compiled , but others can be?
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
    int a = 0;
    int b = 0;
    int c = 0;
    c = a+++b;
    printf("a+++b is: %d\n", c);
    c = a = b = 0;
    c = a++ + ++b;
    printf("a++ + ++b is: %d\n", c);
    c = b = a = 0;
    c = a+++ ++b;
    printf("a+++ ++b is: %d\n", c);
    c = b = a = 0;
    c = a+++++b;      // NOTE: Can not be compiled here.
    printf("a+++++b is: %d\n", c);
    return 0;
}
 
     
     
     
     
    