. 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 / kupendiran
3
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Differentiate between the expression “++a” and “a++”?
What are predefined functions in c?
What is data structure in c programming?
Where static variables are stored in memory in c?
What does c mean in standard form?
What is a wrapper function in c?
What is the difference between void main and main in c?
What is the argument of a function in c?
Explain what is the difference between #include and #include 'file' ?
What is indirection?
What are the types of c language?
what is a constant pointer in C
What is an auto keyword in c?
How does placing some code lines between the comment symbol help in debugging the code?
Explain why c is faster than c++?