. 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
How are variables declared in c?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
Explain is it better to bitshift a value than to multiply by 2?
What is the significance of scope resolution operator?
What is the concatenation operator?
Explain heap and queue.
Is c is a middle level language?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What is c preprocessor mean?
What is getche() function?
Explain 'far' and 'near' pointers in c.
What are terms in math?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
Write a program to swap two numbers without using third variable in c?
What is unsigned int in c?