Search
User login
Username:
*
Password:
*
Register
Placement Papers
Interview Questions
Jobs in India
Content Base
Quiz/Puzzles
Questions
Advanced C Quiz
Question
1
of
12
What is the output
#define INDX(x) (++indx[x][ptr[x-1]],&indx[x][ptr[x-1]])
int main()
{
int indx[6]={0,1,2,3,4,5};
int i=10;
char arr[][20]={"%hs'nt %s %s","%dbool", "?n%shis? ",};
char *ptr[3];
ptr[0]=&arr[0][0];
ptr[1]=&arr[1][0];
ptr[2]=&arr[2][0];
printf(INDX(1),INDX(3),INDX(2));
}
isn''t this cool
compile time error
isn''t this cool
This is bool