Computer Science, asked by roshankumar34054, 19 days ago

What will be the output of the program?

class Bitwise

public static void main(String [] args)

int x = 11 & 9;

int y = x^3; System.out.println( y | 12 );​

Answers

Answered by garvit8537
0

Explanation:

#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