What will be the output of the code snippet?
int funct(a,b)
int a,b;
{
return a*b;
}
void main()
{
int i=135,k;
clrscr();
k=funct(!++i,!i++);
printf(i=%d,k=%d,i,k);
getch();
}
Reveal answer
Fill a bubble to check yourself
What will be the output of the code snippet?
int funct(a,b)
int a,b;
{
return a*b;
}
void main()
{
int i=135,k;
clrscr();
k=funct(!++i,!i++);
printf(i=%d,k=%d,i,k);
getch();
}