1. >Digital Electronics
Found 51  QuestionSET DEFAULT
Selected Filters
    Digital Electronics
Exams
Subjects
Topics

List of top Digital Electronics Questions

int g(int p)
{
     printf("%d", p);
     return p;
}
int h(int q)
{
     printf("%d", q);
     return q;
}
void f(int x, int y)
{
     g(x);
     h(y);
}
int main ()
     f(g(10), h(20));
}
What is the o/p printed ? (parameters all evaluated from left to right)
  • GATE CS
  • Digital Electronics
  • Programmable Logic Array
  • Prev
  • 1
  • 2
  • 3
  • Next