Concept drill
C++
GATE CSE & IT · Symbol Tables & Storage · 2013-2013
1
PYQs
100%
keyed
0
elite explanations
1
years appeared
Study anchor
Source-book anchor pending for this concept.
Practice action
Start latest PYQPYQs in this concept
All concepts →2024 PYQ
What is the output of the following C program? #include <studio.h> int main() { double a[2]={20.0, 25.0}, *p, *q; p = a; q = p + 1; printf("%d,%d", (int)(q - p), (int)(*q - *p)); r...
easyanswer keybasic explanation
2013 PYQ
What is the return value of f (p, p), if the value of p is initialized to 5 before the call? Note that the first parameter is passed by reference, whereas the second parameter is p...
mediumanswer key