what is the output
>>> a=25
>>> print(a)
Answers
Answered by
2
Answer:
25
Explanation:
because it prints value which is in variable a
Answered by
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();
}
void main ()
{
int a=25;
clrscr();
printf(“%d”,&a);
getch();
}
Similar questions