main()
{
int x, arr[8]={11,22,33,44,55,66,77,88};
x=(arr+2)[3];
printf(ā%dā,x);
}
Answer Posted / mahesh
33
| Is This Answer Correct ? | 0 Yes | 9 No |
Post New Answer View All Answers
What are 'near' and 'far' pointers?
What is the use of getchar functions?
Explain the use of keyword 'register' with respect to variables.
The __________ attribute is used to announce variables based on definitions of columns in a table?
Explain output of printf("Hello World"-'A'+'B'); ?
Explain that why C is procedural?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
Write a Program to accept different goods with the number, price and date of purchase and display them
What is atoi and atof in c?
How can I implement a delay, or time a users response, with sub-second resolution?
Explain the bubble sort algorithm.
Is this program statement valid? INT = 10.50;
Write a program to print factorial of given number using recursion?
What is string in c language?
What is the difference between union and structure in c?