πŸ“Š C++
Q. How many times 'a community of learners' should be printed?
Code:
int main()
{
int i = 1 ;
i = i - 1 ;

while(i)
{
    cout<<"a community of learners";
    i++ ;
}

return 0;
}
  • (A) 0
  • (B) 1
  • (C) 2
  • (D) Infinite Times
πŸ’¬ Discuss
βœ… Correct Answer: (A) 0

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

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