Computer Science, asked by vansi41pqp, 19 days ago

Question : 10 / 20
#include
void e(int);
int main(void)
{
int a = 3;
e(a);
putchar("\n");
return 0;
}
void e(int n)
{
if (n > 0)

{
ef--n):
printf("%d", n):
ef--n):
}
}
What is the output of this program?

Answers

Answered by bk19688aspcs
0

Answer:

print ("%d",n)

n is greater than 0

Similar questions