πŸ“Š C Programming
Q. What is the output of C Program with functions?
Code:
int bunny(int,int);
int main()
{
    int a, b;
    a = bunny(5, 10);
    b = bunny(10, 5);
    printf("%d %d", a, b);
    return 0;
}
int bunny(int i, int j)
{
    return (i, j);
}
  • (A) 5 10
  • (B) 10 5
  • (C) 5 5
  • (D) Compiler error
πŸ’¬ Discuss
βœ… Correct Answer: (B) 10 5

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
257
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Ram Sharma
Publisher
πŸ“ˆ
82%
Success Rate