main()
{
int x, arr[8]={11,22,33,44,55,66,77,88};
x=(arr+2)[3];
printf(ā%dā,x);
}
Answer Posted / akshay
66
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Write a C program to count the number of email on text
What is uint8 in c?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is the use of clrscr?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
program to convert a integer to string in c language'
Explain the red-black trees?
Explain the use of 'auto' keyword
write a program to create a sparse matrix using dynamic memory allocation.
Explain pointer. What are function pointers in C?
Can we access the array using a pointer in c language?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is a macro?
What is a dynamic array in c?
What is meant by type specifiers?