โช Choose the correct option.
What will be output of the following “c” code?
#include
int main()
{
int i=5,j=6,z;
printf("%d",i+++j);
return 0;
}
#include
int main()
{
int i=5,j=6,z;
printf("%d",i+++j);
return 0;
}