📚 Question Bank Q64 — Programming and Data Structure
Tags
Programming and Data Structure
Q64. Marks: +2.0 UGC NET Paper 2: Computer Science and Application 26th June 2025 Shift 1
Consider the following piece of C programming code:
int x = 128, y = 110 ;
do
{
if(x > y)
x = x - y
else
y = y - x;
} while(x! = y)
printf("%d",x);
Which one will be the output?
1.18
2.2 ✓ Correct
3.92
4.74
📄 All “Programming and Data Structure” questions across papers
🏷 Change Tag for this Question