main()
{
int x, arr[8]={11,22,33,44,55,66,77,88};
x=(arr+2)[3];
printf(“%d”,x);
}
Answer Posted / priya
i want answer for this
| Is This Answer Correct ? | 17 Yes | 3 No |
Post New Answer View All Answers
Explain what are bus errors, memory faults, and core dumps?
Write a program to find factorial of a number using recursive function.
What is the sizeof () a pointer?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
what is a function method?give example?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is the size of enum in bytes?
How can you tell whether two strings are the same?
Is there any possibility to create customized header file with c programming language?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What are reserved words with a programming language?
Write a program to print all permutations of a given string.
Write a program to swap two numbers without using third variable?
What is the basic structure of c?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.