Top

Discussion

What will be the output of the following program?

#include< stdio>

int main()
{
register int I = 2;
static char ch = ‘A’;
auto float j;
int k;
k = ++ch && I;
k = ++ch;
j = i-- + ++k * 2;
printf(“%d %f”, k , j);
return 0;
}

 

  • A.B 3
  • B.65 138.000000
  • C.68 138.000000
  • D.A 138

Answer: C

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment