📚 Question Bank Q32 — Programming and Data Structure
Tags
Programming and Data Structure
Q32. Marks: +2.0 UGC NET Paper 2: Computer Science and Application 26th June 2025 Shift 1
What will be the output of the following C Programming code:
void main ()
{
int *i, a = 12 b = 2 c;
c=( a = a + b , b = a / b, a =a * b, b = a - b )
i =&c;
printf("%d", --(*i));
}
 
1.91
2.90 ✓ Correct
3.98
4.92
📄 All “Programming and Data Structure” questions across papers
🏷 Change Tag for this Question