#include
void display(int);
void display(int a);
int main()
{
int a=1;
display(a);
}
void display(int a)
{
printf("%d%d%d",++a,a++,a);
}
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Shubham WankhedePosted Nov 22, 2019, 9:03 AM