Correct Answer: D
Explanation:
Loading...
Correct Answer: D
Explanation:
Take your GATE-CS preparation to the next level. Practice with full-length mock tests, get instant results, and track your progress with detailed analytics.
Browse GATE-CS Test SeriesIn C runtime environment, which one of the following is stored in heap?
#include <stdio.h> int main(){ int *ptr, a, b, c; a=5; b=11; c=20; ptr=&a; *pt…
#include <stdio.h> void foo(int *p, int x) { *p = x; } int main() { int *z; int a …
#include <stdio.h> int main(){ int a; int arr[5] = {30,50,10}; int *ptr; ptr =…
#include <stdio.h> int main() { double a[2] = {20.0, 25.0}, *p, *q; p = a; q = p +…
int fX(char *a){ char *b = a; while(*b) b++; return b - a; }Which of the followi…