main()
{
int x, arr[8]={11,22,33,44,55,66,77,88};
x=(arr+2)[3];
printf(ā%dā,x);
}
Answer Posted / kaveri
Can you explain how ans is 33
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
Linked lists -- can you tell me how to check whether a linked list is circular?
Why main function is special give two reasons?
What are # preprocessor operator in c?
What are two dimensional arrays alternatively called as?
What are header files in c?
how to find binary of number?
What is data structure in c and its types?
Explain what are global variables and explain how do you declare them?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Explain what will the preprocessor do for a program?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What is quick sort in c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
When should volatile modifier be used?
How to draw the flowchart for structure programs?