Answer:
mhyfocnu,sobgu,kvngwugwe8hri
Explanation:
sovijbjxyzkuvcg
Following are the code that is written in c language
#include <stdio.h>
int main() // main function
{
int n1,t; // declaring variable
printf(" Enter an integer :");
scanf("%d",&n1); // taking input
while(n1>0) // iterating over the loop untill the value of n is greater then 0
{
t=n1%10;
printf("%d",t);
printf("\n");
n1=n1/10;
}
return 0;
}
Explanation:
we taking an integer value n1 and iterating over the loop untill n1>0
suppose n1=1234
then t=n%10;
means t=1234%10
as % holds reminder means t=4
then print the value of t means print 4
and n1 becomes 123 which is > 0 again condition is checking and same process is follow untill n1>0
output
Enter an integer: 5213
3
1
2
5
The assignment operator is a binary operator.
<h3>What is a binary operator?</h3>
A Binary operators is known to be those operators or people who work with two operands.
Note that the binary operators are said to be subdivided into:
- Arithmetic
- Relational
- Logical
- Assignment operators
Learn more about binary from
brainly.com/question/21475482
Answer:
Yes.
Explanation:
Your software requires CPU instruction if CPU doesn't provide that instructions the software won't work/run.
hope this helps you
have a great day:)