πŸ“Š C Programming
Q. What is the output of C Program.?
Code:
int main()
{
    int a=25;
    
    while(a <= 27)
    {
        printf("%d ", a);
        a++;
    }

    return 0;
}
  • (A) 25 25 25
  • (B) 25 26 27
  • (C) 27 27 27
  • (D) Compiler error
πŸ’¬ Discuss
βœ… Correct Answer: (B) 25 26 27

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

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