. 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 / cvramana.reddy10
please answer it with reason..
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
What is NULL pointer?
How does #define work?
What is the meaning of typedef struct in c?
What are header files in c programming?
Why #include is used in c language?
Explain the ternary tree?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is wrong with this program statement? void = 10;
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
Write a program to identify if a given binary tree is balanced or not.
What tq means in chat?
What are 3 types of structures?
Define recursion in c.
What is #include called?
What is string constants?