πŸ“Š C Programming
Q. What is the output of C Program?
Code:
int myshow(int);

void main()
{
   myshow(5);
   myshow(10);
}

int myshow(int b)
{
    printf("Received %d, ", b);
}
  • (A) Received 5, Received 10,
  • (B) Received 10, Received 5,
  • (C) Received 0, Received 0,
  • (D) Compiler error
πŸ’¬ Discuss
βœ… Correct Answer: (A) Received 5, Received 10,

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

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