Consider the following C function
#include
int main()
{
char c[] = "ICRBCSIT17";
char *p = c;
printf("%s",c + 2[p] - 6[p] - 1);
return 0;
}
The output of the program is
1
SI
2
IT
3
T1
4
17
Consider the following C function
#include
int main()
{
char c[] = "ICRBCSIT17";
char *p = c;
printf("%s",c + 2[p] - 6[p] - 1);
return 0;
}
The output of the program is