Computer Science, asked by manal6554, 1 year ago

Int i=14;
If (I=I(10+5))
{
I++;
}
*

Answers

Answered by tanisha9875
12

what is this !!!!!!!

Answered by sarahssynergy
0

Error

Explanation:

  • The given lines in C language are case-sensitive.
  • The variable 'i' only has been defined at the beginning.
  • The variable 'I' has not been defined anywhere.
  • Thus, when called in the if loop, it raises an error that the variable mentioned is not identifiable as it has not been defined.
Similar questions