edited by
2,422 views

2 Answers

Answer:

Related questions

3 votes
3 votes
2 answers
1
ajit asked Sep 23, 2015
5,115 views
Which of the following is true with respect to Reference?A reference can never be NULLA reference needs an explicit dereferencing mechanismA reference can be reassigned a...
2 votes
2 votes
3 answers
2
ajit asked Sep 20, 2015
3,677 views
Which of the following is NOT represented in a subroutine's activation record frame for a stack-based programming language?Values of local variablesReturn addressHeap are...
2 votes
2 votes
4 answers
3
jenny101 asked Jun 25, 2016
4,887 views
The following three 'C' language statements is equivalent to which single statement?y=y+1; z=x+y; x=x+1z = x + y + 2;z = (x++) + (++y);z = (x++) + (y++);z = (x++) + (++y)...
7 votes
7 votes
9 answers
4
pooja14 asked Jun 22, 2016
8,033 views
What is the output of the following C program? #include<stdio.h #define SQR(x) (x*x) int main() { int a; int b=4; a=SQR(b+2); printf("%d\n",a); return 0; }14361820