📚 Question Bank Q47 — Programming and Data Structure
Tags
Programming and Data Structure
Q47. Marks: +2.0 UGC NET Paper 2: Computer Science 18th June 2024 Shift 1 (Cancelled)

The output of the following C++ Program is:

#include <stdio.h>

int main (void)

{

int x, *p;

x = 30;

p = x;

print f ("%d", *p);

return 0;

}

1.30
2.value of x
3.address of x
4.Error ✓ Correct
📄 All “Programming and Data Structure” questions across papers
🏷 Change Tag for this Question