Computer Science, asked by neelamsingha943, 1 month ago

what is the output
>>> a=25
>>> print(a)​

Answers

Answered by mallelacharankumar
2

Answer:

25

Explanation:

because it prints value which is in variable a

Answered by agentdevprobs
3
the output is a because when you store the value of the variable , the variable shows the same value which you gave in the input so answer will be 25

void main ()
{
int a=25;
clrscr();
printf(“%d”,&a);
getch();
}
Similar questions