main()
{
int x, arr[8]={11,22,33,44,55,66,77,88};
x=(arr+2)[3];
printf(ā%dā,x);
}
Answer Posted / neha
66
| Is This Answer Correct ? | 26 Yes | 2 No |
Post New Answer View All Answers
What is s in c?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
Explain what is meant by high-order and low-order bytes?
Find MAXIMUM of three distinct integers using a single C statement
explain what is an endless loop?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What's the best way of making my program efficient?
Which is best linux os?
Is it acceptable to declare/define a variable in a c header?
Why static is used in c?
Explain what is wrong with this program statement?
What are operators in c?
When should we use pointers in a c program?
Which is better malloc or calloc?
Why is this loop always executing once?