. 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
Write a program in c to replace any vowel in a string with z?
What is #include stdio h?
How to draw the flowchart for structure programs?
Why is c still so popular?
How can I read data from data files with particular formats?
What is void main () in c?
Do pointers need to be initialized?
How can I manipulate individual bits?
Explain spaghetti programming?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What is the difference between int main and void main?
What does printf does?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What are the types of assignment statements?
How can I insert or delete a line (or record) in the middle of a file?