What is the output of the following C program?
#include
int main()
{
int a=5;
a=a<> a-1;
printf("%d",a);
return 0;
}
a) 20
b) 625
c) 5
d) None of the above
Answers
Answered by
1
Answer:
d
Explanation:
May be it was right..................
Similar questions