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
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Sir i want e-notes of C languge of BAlaguruswami book i.e scanned or pdf file of balaguruswamy book on c language.PLEASE SEND ME on my mail id ajit_kolhe@rediff.com
can any one provide me the notes of data structure for ignou cs-62 paper
What is the role of && operator in a program code?
Tell us two differences between new () and malloc ()?
Add 2 64 bit numbers on a 32 bit machine
3 Answers EMC, Hyderabad Central University, NetApp,
Can a variable be both const and volatile?
Which is better oop or procedural?
How can I swap two values without using a temporary?
what is difference b/w extern & volatile variable??
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }