int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be
a) 7
b) 6
c) 4
d) pointer
No Answer is Posted For this Question
Be the First to Post Answer
What is the stack in c?
Explain the term printf() and scanf() used in c language?
what is the difference between declaration and definition of a variable or function ?
Under what circumstances does a name clash occur?
In header files whether functions are declared or defined?
Can a program have two main functions?
code for selection sort?
how would a 4*3 array A[4][3] stored in Row Major Order?
How do we declare variables in c?
What are file streams?
Reverse a string word by word??
How many bytes is a struct in c?