main()
{
int x, arr[8]={11,22,33,44,55,66,77,88};
x=(arr+2)[3];
printf(ā%dā,x);
}
Answer Posted / sathya
answer is 44
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is the equivalent code of the following statement in WHILE LOOP format?
Explain about the functions strcat() and strcmp()?
What is the difference between exit() and _exit() function?
What's the total generic pointer type?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What are the uses of null pointers?
Which is better between malloc and calloc?
What is malloc() function?
What are the disadvantages of a shell structure?
Why main function is special give two reasons?
Why clrscr is used after variable declaration?
What are the 5 elements of structure?
How do I get a null pointer in my programs?
What is a memory leak? How to avoid it?
What is a program?