. Consider the following program
main()
{
int a[5]={1,3,6,7,0};
int *b;
b=&a[2];
}
The value of b[-1] is
(A) 1 (B) 3 (C) -6 (D) none
Answer Posted / megh singh rana
HERE address of location a[2] assined to b .now b stre this
data in o location as b[0],so b[-1] is the value immediate
before b[0]( 6) is 3,thats why answer of b[-1] is 3,
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
How to explain the final year project as a fresher please answer with sample project
What does struct node * mean?
Write a c program to demonstrate character and string constants?
What is the maximum no. of arguments that can be given in a command line in C.?
Where are local variables stored in c?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Explain how can you restore a redirected standard stream?
Explain logical errors? Compare with syntax errors.
What is c language used for?
What is function prototype in c language?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is nested structure?
Write a program to know whether the input number is an armstrong number.
How can I find out the size of a file, prior to reading it in?