Computer Science, asked by SubhransuDey, 1 month ago

What will be the output of the following :
ink k=5,
j=9;
k+=(k++)–(++j)+k;
System.out.println(‘‘Value of K=’’+k);
System.out.println(‘‘Value of J=’’+j);

Answers

Answered by chiamac19
2

Value of K=6

Value of J=10

PLEASE MARK BRAINLIEST...

Answered by nitamonipatir
2

include<stdio.h>

void main()

{

int a[5] = {5, 1, 15, 20, 25};

int i, j, m;

i = ++a[1];

j = a[1]++;

m = a[i++];

printf("%d, %d, %d", i, j, m);

Similar questions