restrict

When using a restrict Pointer in C, is it OK to change a variable using its initial Identifier?

When using a restrict Pointer in C, is it OK to change the variable using its initial Identifier? For example: int foo = 0; int * restrict fooPtr = &foo; ++(*fooPtr); // Part 1: foo is 1 (OK) ++foo; // Part 2: foo is 2 (Is this OK?) int * fooPtr2 = &foo; ++(*fooPtr2); // Par...

Android Market to list my app on just one particular device or just on tablets. How?

Hi, I need to make an app available for just one particular device model (or alternatively for just tablets) on the Android Market. Is that possible? Thanks for any hints. ...