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
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
History,
1 month ago
English,
1 month ago
Math,
2 months ago
English,
2 months ago
Computer Science,
8 months ago