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
How would you write qsort?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
What is the diffences between Windows XP and Windows Visa
What does the file stdio.h contain?
c program to compute Income tax and Net Salary for its employees. The company offers tax relief of Kshs. 650 for single employees and Kshs. 1,100 for married employees. The relief will be deducted from the Gross salary, to give the taxable income. This will be computed at the following rates: [10mks] Taxable Income Rate (%) <5000 0 5000-19999 6 20000-36999 9 37000 and above 16
Which is better oop or procedural?
What is volatile variable in c?
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
What is union and structure?
What is the difference between arrays and pointers?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321