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.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
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--;
}
Please
log in
or register to answer this question.
2 Answers
0
votes
answered
Oct 12, 2019
by
anonymous
after compiling value of result 198 and value of count -1
Please
log in
or register to add a comment.
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
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...