Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

what will the value of the result variable be after the code has executed

–1 vote
asked Oct 9, 2019 by anonymous
int result = 0

for (int i = 0 ; i < 33 ; i++)

{

       int count = 5

      while(count >= 0)

}

       result++;

      count--;

}

2 Answers

0 votes
answered Oct 12, 2019 by anonymous
after compiling value of result 198 and value of count -1
0 votes
answered Oct 12, 2019 by Awais ul Hassan
result value 198 or count value -1

that's value are not display because values not print in this proharm
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...