. 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
What is a program flowchart and explain how does it help in writing a program?
Why does not c have an exponentiation operator?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Describe the order of precedence with regards to operators in C.
Explain what is the difference between far and near ?
Explain about the functions strcat() and strcmp()?
Is return a keyword in c?
What are c preprocessors?
What is linear search?
What is identifiers in c with examples?
What does it mean when the linker says that _end is undefined?
how to make a scientific calculater ?
What is the right way to use errno?
Explain what does a function declared as pascal do differently?
What is the use of linkage in c language?