Computer Science, asked by kavitapal032001, 11 months ago

what is the meaning of int i; int remain= evenodd %2; in context of programming?

Answers

Answered by sneha1120
0

Answer:

ftfytdutugtuftfygufdtvjgug

Answered by AskewTronics
1

The meaning of  int i; int remain= evenodd %2; in context of programming is as follows--

Explanation:

  • 'int i' states that 'i' is a variable of integer type which holds the integer value and can do any modification in value while using with other variables but currently it has no value. It is because in the c programming language the "int variable_name" is used to define the variable of integer type.
  • "int remain= evenodd %2;" refers that 'remain' is a variable of integer type which is used to store the value of "evenodd%2". It is because in the c programming language the "int variable_name" is used to define the variable of integer type and "=" is an assignment operator that assigns the right-side value on the left side variable.
  • "evenodd%2" gives the remainder value when the 'evenodd' variable value is divisible by 2. It is because the '%' operator gives the remainder.

Learn More:

Program in c language: https://brainly.in/question/10606397

Similar questions